您当前的位置: 首页 > 慢生活 > 程序人生 网站首页程序人生
rabbitmq安装
发布时间:2021-12-31 21:40:45编辑:雪饮阅读()
Erlang/OTP 23.2安装
下载otp_src_23.2.tar.gz
tar -zxvf otp_src_23.2.tar.gz
cd otp_src_23.2
export ERL_TOP=`pwd`
安装wxWidgets-devel
[root@localhost otp_src_23.2]# yum install wxWidgets-devel
[root@localhost otp_src_23.2]# ln /usr/bin/wx-config-3.0 /usr/bin/wx-config
编译
./configure
rabbitmq安装
通用二进制包下载
[root@localhost workerman]# wget https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.9.11/rabbitmq-server-generic-unix-3.9.11.tar.xz
--2021-12-31 11:28:53-- https://github.com/rabbitmq/rabbitmq-server/releases/download/v3.9.11/rabbitmq-server-generic-unix-3.9.11.tar.xz
Resolving github.com (github.com)... 20.205.243.166
Connecting to github.com (github.com)|20.205.243.166|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://objects.githubusercontent.com/github-production-release-asset-2e65be/924551/98c39c6d-53c0-4f31-838a-75dc51a9fc38?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20211231%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20211231T032853Z&X-Amz-Expires=300&X-Amz-Signature=680819e76dc5f59e288f5c6a01a80133372549f88378e5009ffb066b368cb01e&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=924551&response-content-disposition=attachment%3B%20filename%3Drabbitmq-server-generic-unix-3.9.11.tar.xz&response-content-type=application%2Foctet-stream [following]
--2021-12-31 11:28:53-- https://objects.githubusercontent.com/github-production-release-asset-2e65be/924551/98c39c6d-53c0-4f31-838a-75dc51a9fc38?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20211231%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20211231T032853Z&X-Amz-Expires=300&X-Amz-Signature=680819e76dc5f59e288f5c6a01a80133372549f88378e5009ffb066b368cb01e&X-Amz-SignedHeaders=host&actor_id=0&key_id=0&repo_id=924551&response-content-disposition=attachment%3B%20filename%3Drabbitmq-server-generic-unix-3.9.11.tar.xz&response-content-type=application%2Foctet-stream
Resolving objects.githubusercontent.com (objects.githubusercontent.com)... 185.199.108.133, 185.199.110.133, 185.199.111.133, ...
Connecting to objects.githubusercontent.com (objects.githubusercontent.com)|185.199.108.133|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 12443144 (12M) [application/octet-stream]
Saving to: ‘rabbitmq-server-generic-unix-3.9.11.tar.xz’
100%[================================================================================================>] 12,443,144 38.8KB/s in 5m 2s
2021-12-31 11:33:56 (40.2 KB/s) - ‘rabbitmq-server-generic-unix-3.9.11.tar.xz’ saved [12443144/12443144]
tar -xvf rabbitmq-server-generic-unix-3.9.11.tar.xz
服务启动
[root@localhost rabbitmq_server-3.9.11]# sbin/rabbitmq-server
2021-12-31 14:58:07.922430+08:00 [info] <0.221.0> Feature flags: list of feature flags found:
2021-12-31 14:58:07.932106+08:00 [info] <0.221.0> Feature flags: [x] implicit_default_bindings
2021-12-31 14:58:07.932143+08:00 [info] <0.221.0> Feature flags: [x] maintenance_mode_status
2021-12-31 14:58:07.932165+08:00 [info] <0.221.0> Feature flags: [x] quorum_queue
2021-12-31 14:58:07.932189+08:00 [info] <0.221.0> Feature flags: [x] stream_queue
2021-12-31 14:58:07.932262+08:00 [info] <0.221.0> Feature flags: [x] user_limits
2021-12-31 14:58:07.932283+08:00 [info] <0.221.0> Feature flags: [x] virtual_host_metadata
2021-12-31 14:58:07.932303+08:00 [info] <0.221.0> Feature flags: feature flag states written to disk: yes
2021-12-31 14:58:08.204465+08:00 [noti] <0.44.0> Application syslog exited with reason: stopped
2021-12-31 14:58:08.204550+08:00 [noti] <0.221.0> Logging: switching to configured handler(s); following messages may not be visible in this log output
## ## RabbitMQ 3.9.11
## ##
########## Copyright (c) 2007-2021 VMware, Inc. or its affiliates.
###### ##
########## Licensed under the MPL 2.0. Website: https://rabbitmq.com
Erlang: 23.2 [emu]
TLS Library: OpenSSL - OpenSSL 1.0.2k-fips 26 Jan 2017
Doc guides: https://rabbitmq.com/documentation.html
Support: https://rabbitmq.com/contact.html
Tutorials: https://rabbitmq.com/getstarted.html
Monitoring: https://rabbitmq.com/monitoring.html
Logs: /www/wwwroot/workerman/rabbitmq_server-3.9.11/var/log/rabbitmq/rabbit@localhost.log
/www/wwwroot/workerman/rabbitmq_server-3.9.11/var/log/rabbitmq/rabbit@localhost_upgrade.log
<stdout>
Config file(s): (none)
Starting broker... completed with 0 plugins.
关键字词:rabbitmq,安装