[rabbitmq-discuss] RabbitMQ unable to talk to remote server
pgaltieri at gmail.com
pgaltieri at gmail.com
Fri Apr 5 18:44:32 BST 2013
What you need to do is edit the file /etc/sysconfig/iptables on the RedHat
server system and add the following line
-A INPUT -m state --state NEW -m tcp -p tcp --dport 5672 -j ACCEPT
Here is a snippet of my /etc/sysconfig/iptables
-A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 5672 -j ACCEPT
dport 5672 is the well known port for amqp messages. After you have added
the line you need to run
service iptables restart
on the RedHat system. This should fix the problem. I had the same issue
when trying out the RabbitMQ tutorials. What I described here solved my
problem.
Hope this helps.
Paolo
On Friday, March 29, 2013 3:08:44 PM UTC-7, Eric Sender wrote:
>
> Hello,
>
> I am setting up an enviornment where the server and client are on seperate
> hosts. Using wireshark, I am finding that my connection requests are being
> blocked by code 10:
>
> Code: 10 (Host administratively prohibited)
>
> I was wondering if anyone knows how to make sure my server is set up right
> to work with RabbitMQ? I am using the default ports.
>
> Here is my set up:
>
>
> - Remote server is CentOS. It is on my same subnet (its actually a
> guestOS on my PC)
> - I am currently running the server as Python. Just the tutorial #1
> recieve.py server
> - connection =
> pika.BlockingConnection(pika.ConnectionParameters(host='localhost'))
> - My client is my HostOS PC running Java.
> - factory.setHost("192.168.1.124"); //x.x.x.124 is my "remote"
> GuestOS
> - Everything works find through localhost, but when I try
> to separate the client and server, I am getting what looks like firewall
> issues.
>
>
> So, this question may require some help from a person who uses
> RedHat/CentOS as their server OS, as I imagine part of the solution has to
> do with modifying the firewall or something in the virtual NIC card?
>
> I am posting this on the Google Groups, and I have noticed google doesn't
> update for every reply? Please be sure to CC my personal email just in case
> Google doesn't update. sender.eric (at) gmail
>
> Thanks,
> Eric
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.rabbitmq.com/pipermail/rabbitmq-discuss/attachments/20130405/0e11ccb4/attachment.htm>
More information about the rabbitmq-discuss
mailing list