前言
用VMware安装CentOS 7.6,创建一个新的用户lihailin9073,并使用这个用户登陆CentOS系统
安装和启动
登陆ActivieMQ官网http://activemq.apache.org找到下载地址:http://mirror.bit.edu.cn/apache//activemq/5.15.9/apache-activemq-5.15.9-bin.tar.gz,在命令行输入:
$cd /home/lihailin9073
$mkdir opt
$cd opt
$wget http://mirror.bit.edu.cn/apache//activemq/5.15.9/apache-activemq-5.15.9-bin.tar.gz
$tar -zxvf apache-activemq-5.15.9-bin.tar.gz
$cd apache-activemq-5.15.9
$cd bin
$./activemq
$./activemq console
$service iptables stop --关闭防火墙,然后外网访问web管理面板:http://192.168.1.101:8161/admin/,帐号秘密为admin,admin
$vi /etc/sysconfig/iptables -- 编辑iptables添加端口
-A INPUT -p tcp -m state --state NEW -m tcp --dport 8161 -j ACCEPT(允许8161端口通过防火墙)
$service iptable restart --重启防火墙,或者:systemctl restart iptables.service
==========================================================================================
遇到的一个坑,如下:
一、service iptables save无效命令?
提示如下错误:The service command supports only basic LSB actions ....可按照如下方法解决:
关闭防火墙
systemctl stop firewalld
安装或更新服务
yum install iptables-services
启动iptables
systemctl enable iptables
打开iptables
systemctl start iptables
此时service iptables save命令已经可用。