Hello, Guys. I’m stuck in little problem. I have a Droplet which is connected to ServerPilot. I use WordPress on that Droplet, my question how to attach a Block Storage when I’m connected to ServerPilot?
I read this Tutorial, But I think something different in ServerPilot. So, I asked them & they told me I have to mount the Block Storage in /srv you can check the full ScreenShot Here.
I don’t have a single knowledge in Linux, that is why I use DigitalOcean & ServerPilot for easy maintenance.
Did any of guys happen to using Block Storage when you’re using ServerPilot? Could you help me by giving me step by step tutorial? Remember, I use only WordPress, so I wants to mount or attach the Block Storage in such way, that I won’t have any issue while uploading Images or Attachments in my WordPress Library.
Thank you.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Once you deploy a new Droplet with a Volume, first click on the name of the Droplet and then, from the left side menu, click on Volumes.
You’ll then want to click on More, then Config instructions. A pop up will be presented with the configuration commands that you need to run in order to mount the volume persistently.
Those commands will be something like:
sudo mkfs.ext4 -F /dev/disk/by-id/scsi-0DO_Volume_volume-nyc1-01
and
sudo mkdir -p /mnt/volume-nyc1-01; sudo mount -o discard,defaults /dev/disk/by-id/scsi-0DO_Volume_volume-nyc1-01 /mnt/volume-nyc1-01; echo /dev/disk/by-id/scsi-0DO_Volume_volume-nyc1-01 /mnt/volume-nyc1-01 ext4 defaults,nofail,discard 0 0 | sudo tee -a /etc/fstab
Which, broken down in to multiple commands, looks like:
sudo mkdir -p /mnt/volume-nyc1-01
sudo mount -o discard,defaults /dev/disk/by-id/scsi-0DO_Volume_volume-nyc1-01 /mnt/volume-nyc1-01
echo /dev/disk/by-id/scsi-0DO_Volume_volume-nyc1-01 /mnt/volume-nyc1-01 ext4 defaults,nofail,discard 0 0 | sudo tee -a /etc/fstab
Since ServerPilot is recommending that you mount to /srv
, you’ll need to modify those commands and remove the mkdir
commands, as they aren’t needed.
Keep in mind, this is an example. You’re volume may be named different, so you need to replace the name of the volume in this example with the name of the volume that’s created for you.
So what we’d end up with us a set of commands like this:
Formate and Prepare the Volume
sudo mkfs.ext4 -F /dev/disk/by-id/scsi-0DO_Volume_volume-nyc1-01
Mount the Volume to /srv
sudo mount -o discard,defaults /dev/disk/by-id/scsi-0DO_Volume_volume-nyc1-01 /srv
Create the /etc/fstab Entry for Persistence
echo /dev/disk/by-id/scsi-0DO_Volume_volume-nyc1-01 /srv ext4 defaults,nofail,discard 0 0 | sudo tee -a /etc/fstab
The part in the commands above that you will probably need to replace is
scsi-0DO_Volume_volume-nyc1-01
Once the above commands are ran, you’ll all done and can then connect the new Droplet to SP.
I just run this command and i lost my all data from /srv/ folder
sudo mount -o discard,defaults /dev/disk/by-id/scsi-0DO_Volume_volume-nyc1-01 /srv
I just use my volume and run this cmd and create lost+found folder in /srv folder
Please help me to get all data back.
Thank you @Dibbyo457
Have you checked the storage information by “df -h” command?
Hi,
I have a 60gb droplet + 140gb volume.
I followed all the steps but Serverpilot still sees just the 60gb from the droplet and not the 140gb from the volume.
Do I have to do something else?
Thank you!