We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Manage your volumes and attach them to the EC2 instances: EC2 -> Elastic Block Store -> Volumes.
Example with /dev/xvdf -> data:
/dev/xvdf
data
# mkdir /data
Edit /etc/fstab and add this entry:
/etc/fstab
# /dev/xvdf /data ext4 defaults,nofail 0 2
Mount and move the data:
# mount /data # cp ... # chwon ...
Make sure (with chown) that the moved data has the correct permissions on /data.
chown
/data