Robotics StackExchange | Archived questions

run master on a cloud server?

I want to run master on cloud. publish topics from rosjs and subscribe topics of master. any reference links ! thanks in advance

Asked by srikar on 2018-09-19 07:51:43 UTC

Comments

Answers

Have you tried setting the IPs of your master and client IP in the bashrc?

Cloud .bashrc (Master)

export ROS_MASTER_URI=http://MASTER_IP:11311/
export ROS_HOSTNAME=MASTER_IP
export ROS_IP=MASTER_IP

End Device .bashrc (Client)

export ROS_MASTER_URI=http://MASTER_IP:11311/
export ROS_HOSTNAME=CLIENT_IP
export ROS_IP=CLIENT_IP

Asked by jonlwowski012 on 2018-09-19 23:16:05 UTC

Comments