You can also add more storage space by using Local Block Storage. Find out more.
A Storage Space is an additional storage that is provided by a storage server in our data center. It can be shared by multiple VPS or root servers. The Storage Space is accessed via Network File System (NFS) and is therefore available not only on Linux and Unix-based operating systems, but also on Windows systems. You can also access the Storage Space from outside, e.g., from your office or a server in another data center.
A Storage Space is part of the contract for a vServer. This means that if the vServer is canceled, the Storage Space will also be deleted.
Access control to the respective Storage Space is controlled out via IP-based authorization. Go to the desired Storage Space in the Customer Control Panel (CCP).
Enter the IP address to be authorized in the field New IPv4 authorization and click on Authorize IP.
You can use the following tool to display your IP address: Your IP Address
For technical reasons, it is not possible to transfer a Storage Space to another server. To transfer the data from a Storage Space, you must book a new Storage Space for the desired server. Next, connect both servers using NFS and transfer the data in the file system.
To guarantee our affordable prices, we host the packages on different servers. Therefore, it is not possible to upgrade your existing Storage Space. To upgrade, you must book a new Storage Space for the desired server. Then connect both servers using NFS and transfer the data in the file system.
Depending on the plan you choose, you will have a certain amount of monthly traffic available. Note that only the traffic volume included in the plan can be used. As soon as the traffic volume is exceeded, the associated Storage Space will be frozen until the end of the calendar month. Currently, we do not provide traffic statistics. It is therefore your responsibility to log your traffic usage yourself.
Install nfs-common
to access NFS storages:
apt-get install nfs-common
If you want to mount your storage space to /mnt/storagespace
, for example, you must first create the mount point:
mkdir /mnt/storagespace
You can now mount the Storage Space:
mount -t nfs IP:/STORAGEPFAD /mnt/storagespace
Replace IP
and STORAGE PATH
with the actual IP address and path of your Storage Space.
You can configure the Storage Space to be mounted automatically when the system starts. To do so, define the mount point permanently in the file /etc/fstab
.
Edit the file /etc/fstab
with a text editor.
Add the following line at the end of the file:
IP:/STORAGEPATH/mnt/storagespace nfs nolock,nfsvers=3,defaults 0 0
Replace IP
and STORAGE PATH
with the actual IP address and path of your Storage Space.
umount/mnt/storagespace
/etc/fstab
:mount -a
mount
If the mount was successful, the configuration is complete and the Storage Space will now be automatically mounted at every system startup.
The NFS client is not installed by default and must be added manually:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ClientForNFS\CurrentVersion\Default
Create 2 new DWORD-entries:
Return to the Server Manager, go back to Tools > Services, and restart the NFS client.
You can now mount the storage as a network drive:
net use X: \\IP\VOLUME
Replace IP
and VOLUME
with the actual IP address and volume of your Storage Space. You can find the respective information in the Customer Control Panel.
The letter X:
stands for the drive letter and can be adjusted as needed and depending on the letters already assigned.