Configuration

March 7, 2024
Tags:  · 
Create an Utho account to try this guide with a $100 credit.

Configuration Page

1743597008993

Once the Elastic Block Storage (EBS) is created, click on the Manage button to be redirected to the Manage Section.

Create a Filesystem: First, create a filesystem on your new storage with the command: mkfs.ext4 /dev/disk/by-id/virtio-uthostorage-49050

Create a Mountpoint : Next, create a mountpoint (a folder) to store your data using:

mkdir /mnt/uthostorage-49050

Mount the Storage: Once the filesystem is ready, mount the storage to the folder with:

mount /dev/disk/by-id/virtio-uthostorage-49050 /mnt/uthostorage-49050

Auto-Mount on Boot: To automatically mount the storage every time your server starts, add a line similar to the following to your /etc/fstab file.

/dev/disk/by-id/virtio-uthostorage-49050 /mnt/uthostorage-49050 ext4 defaults,noatime,nofail 0 2

Create an Utho account to try this guide with a $100 credit.