In my local machine I can have:
connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))
for both scripts (send.py and recv.py) in order to establish proper communication, but what about to establish communication from 12.23.45.67 to 132.45.23.14 ? I know about all the parameters that ConnectionParameters() take but I am not sure what to pass to the host or what to pass to the client. It would be appreciated if someone could give an example for host scrip and client script.
See http://pika.readthedocs.org/en/latest/modules/parameters.html, where it says 'rabbit-server1'
you should enter the remote host name of the IP.
Be aware that the guest
account can only connect via localhost https://www.rabbitmq.com/access-control.html