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.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Accepted Answer
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.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.