-
I had a perfectly working server on Centos 9 Stream with Nextcloud 25.0.1, Nginx 1.23.2, Postgresql server 15 but rabbitmq-server does not start on it. It is installed rabbitmq-server-3.11.3-1.8 and erlang-25.1.1-1.el8. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I found the solution myself. After running my own script adding ip fqdn short name in /etc/hosts: |
Beta Was this translation helpful? Give feedback.
I found the solution myself. After running my own script adding ip fqdn short name in /etc/hosts:
sed -i '/^[^#]::1/s/^/#/' /etc/hosts && addr="$(hostname -I)$HOSTNAME ${HOSTNAME%%.}" && sed -zi '/'"$addr"'/!s/$/'"$addr"'\n/' /etc/hosts
everything worked as it should. It is very strange that no other program or service needed this :)