Quels ports RabbitMQ utilise-t-il ?
Valeur par défaut : 5672, RTFM pour une réponse directe :
https://www.rabbitmq.com/configure.html#define-environment-variables
Les ports personnalisés peuvent être définis dans votre fichier de configuration rabbitmq :
vi /etc/rabbitmq/rabbitmq-env.conf
Demandez à l'ordinateur de vous le dire :
sudo nmap -p 1-65535 localhost
Starting Nmap 5.51 ( http://nmap.org ) at 2014-09-19 13:50 EDT
Nmap scan report for localhost (127.0.0.1)
Host is up (0.00041s latency).
PORT STATE SERVICE
443/tcp open https
5672/tcp open amqp
15672/tcp open unknown
35102/tcp open unknown
59440/tcp open unknown
Oh regardez, 5672, et 15672
Utilisez netstat :
netstat -lntu
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 0.0.0.0:15672 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:55672 0.0.0.0:* LISTEN
tcp 0 0 :::5672 :::* LISTEN
Oh, regardez 5672.
utiliser lsof :
eric@dev ~$ sudo lsof -i | grep beam
beam.smp 21216 rabbitmq 17u IPv4 33148214 0t0 TCP *:55672 (LISTEN)
beam.smp 21216 rabbitmq 18u IPv4 33148219 0t0 TCP *:15672 (LISTEN)
utilisez nmap à partir d'une autre machine, pour savoir si 5672 est ouvert :
sudo nmap -p 5672 10.0.1.71
Starting Nmap 5.51 ( http://nmap.org ) at 2014-09-19 13:19 EDT
Nmap scan report for 10.0.1.71
Host is up (0.00011s latency).
PORT STATE SERVICE
5672/tcp open amqp
MAC Address: 0A:40:0E:8C:75:6C (Unknown)
Nmap done: 1 IP address (1 host up) scanned in 0.13 seconds
Essayez de vous connecter à un port manuellement avec telnet, 5671 est FERMÉ :
telnet localhost 5671
Trying 127.0.0.1...
telnet: connect to address 127.0.0.1: Connection refused
Essayez de vous connecter à un port manuellement avec telnet, 5672 est OUVERT :
telnet localhost 5672
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
Vérifiez votre pare-feu :
sudo cat /etc/sysconfig/iptables
Il devrait vous indiquer quels ports sont ouverts :
-A INPUT -p tcp -m tcp --dport 5672 -j ACCEPT
Réappliquez votre pare-feu :
sudo service iptables restart
iptables: Setting chains to policy ACCEPT: filter [ OK ]
iptables: Flushing firewall rules: [ OK ]
iptables: Unloading modules: [ OK ]
iptables: Applying firewall rules: [ OK ]