1
vote
0answers
91 views

ec2 instance cant mount glusterfs server

My EC2 instance tries to mount glusterfs volume whic located on another EC2 instance . client instance's /etc/fstab file contains: glusterserver1:/export/brick1 /mnt/glusterfs glusterfs defaults 0 ...
0
votes
2answers
105 views

EC2 instance ssh connection not working

I tried to connect to my EC2 Ubuntu LTS instance but I failed. The error message I got like below: ssh: connect to host ec2-79-125-83-13.eu-west-1.compute.amazonaws.com port 22: Connection ...
4
votes
2answers
922 views

How to mount /tmp in /mnt on EC2?

I was wondering what is the best way to mount the /tmp endpoint in the ephemeral storage /mnt on an EC2 instance and give the ubuntu user default write permissions. Some suggest editing /etc/rc.local ...
0
votes
2answers
57 views

Mount a volume within a mounted volume

I am setting up a new Linux Ubuntu server on Amazon EC2 and wanted to create a few extra volumes, to be mounted without execute permissions. /tmp for temporary files /var so that log files and mysql ...
4
votes
1answer
345 views

Create directory before binding via /etc/fstab

I have this line in my /etc/fstab: /mnt/tmp /tmp none bind,nobootwait On EC2 however, /mnt may be lost during restarts causing the mount to fail due to non existent /mnt/tmp. So is there a ...