Ubuntu20安装RabbitMQ记录

1.下载资源

rabbitmq-server-3.8.12.tar.gz
地址:https://www.rabbitmq.com/which-erlang.html

2.开始安装

1)首先安装 erlang
	./configure 配置
报错:configure: error: No curses library functions found
解决方式:apt install libncurses5-dev
继续配置:
报错:
configure: WARNING:
            wxWidgets must be installed on your system.

	Please check that wx-config is in path, the directory
	where wxWidgets libraries are installed (returned by
	'wx-config --libs' or 'wx-config --static --libs' command)
	is in LD_LIBRARY_PATH or equivalent variable and
	wxWidgets version is 2.8.4 or above.

解决方式:

apt install erlang-nox
apt install rabbit-server

上一篇:深入理解ASP.NET Core中的Program类和Startup类


下一篇:Centos6.8下编译安装Apache 2.4.25详细过程