一、下载并安装
1.从http://activemq.apache.org/download.html页面中下载最新的ActiveMQ,选择自己的系统版本下载,这里我们演示的是Linux系统(自己装的虚拟机)的版本。
2.下载后将tar.gz包直接上传至服务器目录,并解压。因为是java编译的,所以只要系统安装了jdk配置好了环境变量,那么ActiveMQ只要解压完成就表名安装完成了,十分简单。
[activemq@localhost ~]$ ls
apache-activemq-5.15.2-bin.tar.gz
[activemq@localhost ~]$ tar -xvf apache-activemq-5.15.2-bin.tar.gz
...
...
[activemq@localhost ~]$ ls
apache-activemq-5.15.2 apache-activemq-5.15.2-bin.tar.gz
[activemq@localhost ~]$ cd apache-activemq-5.15.2
[activemq@localhost apache-activemq-5.15.2]$ ls
activemq-all-5.15.2.jar bin conf data docs examples lib LICENSE NOTICE README.txt webapps webapps-demo
[activemq@localhost apache-activemq-5.15.2]$
二、启动并运行
1.进入安装目录的bin下,使用命令./activemq start启动(需要确保jdk已安装,环境变量已配置,不再赘述)
[activemq@localhost apache-activemq-5.15.2]$ java -version
java version "1.8.0_131"
Java(TM) SE Runtime Environment (build 1.8.0_131-b11)
Java HotSpot(TM) 64-Bit Server VM (build 25.131-b11, mixed mode)
[activemq@localhost apache-activemq-5.15.2]$ ll
总用量 17756
-rwxr-xr-x. 1 activemq activemq 18098716 10月 17 07:25 activemq-all-5.15.2.jar
drwxrwxr-x. 5 activemq activemq 4096 12月 5 23:12 bin
drwxr-xr-x. 2 activemq activemq 4096 12月 5 23:12 conf
drwxr-xr-x. 2 activemq activemq 4096 12月 5 23:12 data
drwxr-xr-x. 2 activemq activemq 4096 12月 5 23:12 docs
drwxr-xr-x. 7 activemq activemq 4096 10月 17 07:28 examples
drwxr-xr-x. 6 activemq activemq 4096 12月 5 23:12 lib
-rw-r--r--. 1 activemq activemq 40580 10月 17 07:28 LICENSE
-rw-r--r--. 1 activemq activemq 3334 10月 17 07:28 NOTICE
-rw-r--r--. 1 activemq activemq 2610 10月 17 07:28 README.txt
drwxr-xr-x. 6 activemq activemq 4096 12月 5 23:12 webapps
drwxrwxr-x. 3 activemq activemq 4096 12月 5 23:12 webapps-demo
[activemq@localhost apache-activemq-5.15.2]$ cd bin
[activemq@localhost bin]$ ls
activemq activemq-diag activemq.jar env linux-x86-32 linux-x86-64 macosx wrapper.jar
[activemq@localhost bin]$ ./activemq start
INFO: Loading '/home/activemq/apache-activemq-5.15.2//bin/env'
INFO: Using java '/usr/java/jdk1.8.0_131/bin/java'
INFO: Starting - inspect logfiles specified in logging.properties and log4j.properties to get details
INFO: pidfile created : '/home/activemq/apache-activemq-5.15.2//data/activemq.pid' (pid '3314')
[activemq@localhost bin]$
2.ActiveMQ默认采用61616端口提供JMS服务,使用8161端口提供管理台服务,所以可以通过查看端口检测服务是否正常启动。
[activemq@localhost bin]$ netstat -ano | grep 61616
tcp 0 0 :::61616 :::* LISTEN off (0.00/0/0)
[activemq@localhost bin]$ netstat -ano | grep 8161
tcp 0 0 :::8161 :::* LISTEN off (0.00/0/0)
[activemq@localhost bin]$ ps -ef | grep activemq
root 2809 2768 0 22:59 pts/1 00:00:00 su - activemq
activemq 2810 2809 0 22:59 pts/1 00:00:00 -bash
root 2902 2098 0 23:01 ? 00:00:00 sshd: activemq [priv]
activemq 2906 2902 0 23:01 ? 00:00:00 sshd: activemq@notty
activemq 2907 2906 0 23:01 ? 00:00:00 /usr/libexec/openssh/sftp-server
activemq 2921 2906 0 23:02 ? 00:00:00 /usr/libexec/openssh/sftp-server
activemq 3314 1 5 23:14 pts/1 00:00:07 /usr/java/jdk1.8.0_131/bin/java -Xms64M -Xmx1G -Djava.util.logging.config.file=logging.properties -Djava.security.auth.login.config=/home/activemq/apache-activemq-5.15.2//conf/login.config -Dcom.sun.management.jmxremote -Djava.awt.headless=true -Djava.io.tmpdir=/home/activemq/apache-activemq-5.15.2//tmp -Dactivemq.classpath=/home/activemq/apache-activemq-5.15.2//conf:/home/activemq/apache-activemq-5.15.2//../lib/: -Dactivemq.home=/home/activemq/apache-activemq-5.15.2/ -Dactivemq.base=/home/activemq/apache-activemq-5.15.2/ -Dactivemq.conf=/home/activemq/apache-activemq-5.15.2//conf -Dactivemq.data=/home/activemq/apache-activemq-5.15.2//data -jar /home/activemq/apache-activemq-5.15.2//bin/activemq.jar start
activemq 3370 2810 4 23:17 pts/1 00:00:00 ps -ef
activemq 3371 2810 0 23:17 pts/1 00:00:00 grep activemq
3.直接通过浏览器登录管理台,地址是:http://ip:8161/admin/,用户名密码默认都是admin
这个管理端在以后可以提供可视化的管理
4.启动的时候可以指定日志:./activemq start > startup.log
三、关闭
1.可以使用命令./activemq stop
2.也可以使用ps -ef | grep activemq获取进程号,然后使用kill命令停止