Ubuntu installation doesn't have configuration files and plugins #8968
Replies: 9 comments 8 replies
-
You must create them yourself in
|
Beta Was this translation helpful? Give feedback.
-
I have enabled the management plugin and curl -4vu guest:guest localhost:15672/api/overview give me
I'm trying to call the web interface from an IP on same subnet: how can I fix it? |
Beta Was this translation helpful? Give feedback.
-
done.
done. I have to create the configuration files. |
Beta Was this translation helpful? Give feedback.
-
Once the plugin is enabled and you have created a configuration file, and you have created a new user with the appropriate tags and permissions (for remote access), you can then inspect the effective configuration, see what See Troubleshooting Networking and server logs if you still cannot connect. Please take it from here. |
Beta Was this translation helpful? Give feedback.
-
I can't find it
After the installation I don't find config ang plugin files. |
Beta Was this translation helpful? Give feedback.
-
ok, clear
I'll try it
Sorry, but I can't find that directories. I find only /etc/rabbitmq/enabled-plugins but is empty |
Beta Was this translation helpful? Give feedback.
-
ok, I made a new empty Ubuntu 22.04 VM and after an upgrade, I executed the CloudSmith install script: #!/bin/sh
sudo apt-get install curl gnupg apt-transport-https -y
curl -1sLf "https://keys.openpgp.org/vks/v1/by-fingerprint/0A9AF2115F4687BD29803A206B73A36E6026DFCA" | sudo gpg --dearmor | sudo tee /usr/share/keyrings/com.rabbitmq.team.gpg > /dev/null
curl -1sLf https://ppa1.novemberain.com/gpg.E495BB49CC4BBE5B.key | sudo gpg --dearmor | sudo tee /usr/share/keyrings/rabbitmq.E495BB49CC4BBE5B.gpg > /dev/null
curl -1sLf https://ppa1.novemberain.com/gpg.9F4587F226208342.key | sudo gpg --dearmor | sudo tee /usr/share/keyrings/rabbitmq.9F4587F226208342.gpg > /dev/null
sudo tee /etc/apt/sources.list.d/rabbitmq.list <<EOF
deb [signed-by=/usr/share/keyrings/rabbitmq.E495BB49CC4BBE5B.gpg] https://ppa1.novemberain.com/rabbitmq/rabbitmq-erlang/deb/ubuntu jammy main
deb-src [signed-by=/usr/share/keyrings/rabbitmq.E495BB49CC4BBE5B.gpg] https://ppa1.novemberain.com/rabbitmq/rabbitmq-erlang/deb/ubuntu jammy main
deb [signed-by=/usr/share/keyrings/rabbitmq.9F4587F226208342.gpg] https://ppa1.novemberain.com/rabbitmq/rabbitmq-server/deb/ubuntu jammy main
deb-src [signed-by=/usr/share/keyrings/rabbitmq.9F4587F226208342.gpg] https://ppa1.novemberain.com/rabbitmq/rabbitmq-server/deb/ubuntu jammy main
EOF
sudo apt-get update -y
sudo apt-get install -y erlang-base \
erlang-asn1 erlang-crypto erlang-eldap erlang-ftp erlang-inets \
erlang-mnesia erlang-os-mon erlang-parsetools erlang-public-key \
erlang-runtime-tools erlang-snmp erlang-ssl \
erlang-syntax-tools erlang-tftp erlang-tools erlang-xmerl
sudo apt-get install rabbitmq-server -y --fix-missing and the broker starts correctly. Playing listeners.tcp.default = 5672
management.tcp.port = 15672
management.tcp.ip = 10.1.1.2 the output of I'm going nuts! |
Beta Was this translation helpful? Give feedback.
-
I'm sorry, sure I will do it |
Beta Was this translation helpful? Give feedback.
-
Unfortunately I didn't have much time to implement the installation, so I switched to ActiveMQ and everything works fine. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I have installed on Ubuntu using instructions in https://www.rabbitmq.com/install-debian.html and the server seems to start correctly.
I have installed management plugin to, but at http://:15672 no response.
Searching for configuration file rabbitmq.conf and plugins folder I can't find them!
Where can I find them?
Best regards
Beta Was this translation helpful? Give feedback.
All reactions