-
Notifications
You must be signed in to change notification settings - Fork 11
install
phachon edited this page Jun 6, 2018
·
1 revision
If you don't have a RabbitMQ service, you'll need to install it yourself, which is pretty simple, see http://www.rabbitmq.com/download.html
Download the latest binary from https://github.com/phachon/wmqx/releases
# Unpack
$ tar -zxvf wmqx.tar.gz
# The default configuration file USES wmqx.conf in the current directory
$ cp config.toml wmqx.conf
# config wmqx.conf
[rabbitmq]
host = "RabbitMQ Server Ip"
port = 5672
username = "test"
password = "123456"
vhost = "/"
# start run
$ ./wmqx
# Of course, you can also specify the configuration file path to start
$ ./wmqx --conf wmqx.conf