sudo yum -y install telnet
Day: March 14, 2016
Rsync to AWS
rsync -rave “ssh -i /your.pem” some.file ec2-user@yourec2machine:~
Accessing RabbitMQ Admin console
just create some user if you want to access to an rabbitmq admin console
rabbitmqctl add_user user pass
rabbitmqctl set_user_tags user administrator
rabbitmqctl set_permissions -p / user “.” “.” “.*”
Accessing AWS ElastiCache
For Redis, I couldn’t access to Redis from outside AWS, but can access it from EC2 or other platforms. #ReminderForMyself
by the way :
Please note that IP-range based access control is currently not enabled for Cache Clusters. All clients to a Cache Cluster must be within the EC2 network, and authorized via security groups as described above.