【 六袆 - Framework】ActiveMQ in windows安装;

介绍

This document describes how to install and configure ActiveMQ for both Unix and Windows’ platforms.

预安装

ActiveMQ5.16版本对应JDK

ActiveMQ版本 JDK版本
5.16 JDK8(推荐)
5.17 JDK9+
6.0 JDK17

Windows Binary Installation

This procedure explains how to download and install the binary distribution on a Windows system.

From a browser, navigate to activemq.apache.org/.
Click the Download link in the navigation pane (the left pane).
Select the latest distribution (for older releases, click the link to the archives).
For a binary distribution, the filename will be similar to: activemq-x.x.x.zip.
Extract the files from the ZIP file into a directory of your choice.
Proceed to the #Starting ActiveMQ section of this document.
Following start-up, go to the #Testing the Installation section of this document.

源码安装

This procedure explains how to download and install the source distribution on a Windows system.

NOTE: ActiveMQ requires Java 8 to run and to build

From a browser, navigate to activemq.apache.org/.
Click the Download link in the navigation pane (the left pane).
Select the latest distribution (for older releases, click the link to the archives).
For a source distribution, the filename will be similar to: activemq-x.x-src.zip.
Extract ActiveMQ from the ZIP file into a directory of your choice.
Build ActiveMQ using Maven 2.1 or greater and Java 1.7.
The recommended method of building ActiveMQ is the following:

cd [activemq_install_dir]

mvn clean install

where [activemq_install_dir] is the directory in which ActiveMQ was installed.

If the above build fails on some tests, type the following:

cd [activemq_install_dir]

mvn clean install -Dmaven.test.skip=true 

If you prefer to use an IDE, then you can auto-generate the IDE’s project file using maven plugins:

mvn eclipse:eclipse

or

mvn idea:idea

Feel free to use any other applicable IDE. Please refer to the plugin reference for more details.

Start ActiveMQ from the target directory, for example:
cd [activemq_install_dir]\assembly\target
unzip activemq-x.x-SNAPSHOT.zip
cd activemq-x.x-SNAPSHOT
bin\activemq
NOTE: Working directories get created relative to the current directory. To create the working directories in the proper place, ActiveMQ must be launched from its home/installation directory.

相关推荐

  1. - Framework】ActiveMQ in windows安装

    2023-12-10 17:50:03       33 阅读
  2. Android PMS——网络下载应用安装

    2023-12-10 17:50:03       27 阅读
  3. Redis 教程系列之Redis 安全()

    2023-12-10 17:50:03       22 阅读

最近更新

  1. TCP协议是安全的吗?

    2023-12-10 17:50:03       18 阅读
  2. 阿里云服务器执行yum,一直下载docker-ce-stable失败

    2023-12-10 17:50:03       19 阅读
  3. 【Python教程】压缩PDF文件大小

    2023-12-10 17:50:03       18 阅读
  4. 通过文章id递归查询所有评论(xml)

    2023-12-10 17:50:03       20 阅读

热门阅读

  1. Linux 基本了解

    2023-12-10 17:50:03       35 阅读
  2. NVMe over Fabrics with SPDK with iRDMA总结 - 2

    2023-12-10 17:50:03       27 阅读
  3. 说说设计体系、风格指南和模式库

    2023-12-10 17:50:03       30 阅读
  4. springboot——helloworld入门

    2023-12-10 17:50:03       27 阅读
  5. Python3 基本数据类型 ----20231209

    2023-12-10 17:50:03       31 阅读
  6. mysql中information_schema.tables字段说明

    2023-12-10 17:50:03       41 阅读