ActiveMQ 的安裝與使用(單節點)
環境:CentOS6.6、JDK8
1.下載:http://archive.apache.org/dist/activemq/5.11.1/apache-activemq-5.11.1-bin.tar.gz
2、 安裝 JDK 並配置環境變數(略)
3、 下載或上傳 Linux 版的 ActiveMQ(可按實際情況使用新一點的版本) $ cd /root/install
4、 解壓安裝
$ tar -zxvf apache-activemq-5.11.1-bin.tar.gz
$ mv apache-activemq-5.11.1 activemq-01 如果啟動指令碼 activemq 沒有可執行許可權,此時則需要授權(此步可選)
$ cd /root/install/activemq-01/bin/
$ chmod 755 ./activemq
ActiveMQ 需要用到兩個埠 一個是訊息通訊的埠(預設為61616)
一個是管理控制檯埠(預設為 8161)可在 conf/jetty.xml 中修改,如下:
<bean id="jettyPort" class="org.apache.activemq.web.WebConsolePort" init-method="start"> <!-- the default port number for the web console --> <property name="host" value="0.0.0.0"/> <property name="port" value="8161"/> </bean>
# vi /etc/sysconfig/iptables 新增:
-A INPUT -m state --state NEW -m tcp -p tcp --dport 61616 -j ACCEPT -A INPUT -m state --state NEW -m tcp -p tcp --dport 8161 -j ACCEPT 重啟防火牆:
# service iptables restart
5、 啟動
$ cd /root/install/activemq-01/bin
$ ./activemq start
6.開啟管理介面
預設使用者名稱和密碼為:admin/admin
7、 安全配置(訊息安全)
ActiveMQ 如果不加入安全機制的話,任何人只要知道訊息服務的具體地址(包括 ip,埠,訊息地址 [ 佇列或者主題地址 ] , ) , 都 可 以 肆 無 忌 憚 的 發 送 、 接 收 消 息 。 關於 ActiveMQ 安裝配置 http://activemq.apache.org/security.html
ActiveMQ 的訊息安全配置策略有多種,我們以簡單授權配置為例:
在 conf/activemq.xml 檔案中在 broker 標籤最後加入以下內容即可:
$ vi /home/wusc/activemq-01/conf/activemq.xml
<plugins> <simpleAuthenticationPlugin> <users> <authenticationUser username="fajun" password="fajun.com" groups="users,admins"/> </users> </simpleAuthenticationPlugin> </plugins>
定義了一個 fajun使用者,密碼為 fajun.com ,角色為 users,admins
設定 admin 的使用者名稱和密碼: $ vi /root/install/activemq-01/conf/jetty.xml
<bean id="securityConstraint" class="org.eclipse.jetty.util.security.Constraint">
<property name="name" value="BASIC" />
<property name="roles" value="admin" />
<property name="authenticate" value="true" />
</bean>
確保 authenticate 的值為 true(預設)
控制檯的登入使用者名稱密碼儲存在 conf/jetty-realm.properties 檔案中,內容如下:
$ vi /root/install/activemq-01/conf/jetty-realm.properties
# Defines users that can access the web (console, demo, etc.) # username: password [,rolename ...] admin: admin, admin
注意:使用者名稱和密碼的格式是
使用者名稱 : 密碼 ,角色名
重啟:
$ /root/install/activemq-01/bin/activemq restart