From Wanos Wiki
Jump to: navigation, search
Line 1: Line 1:
* Insufficient Disk Space
+
==Insufficient Disk Space==
When enabling MultiSite, ensure sufficient disk space is available.
+
  
If the drive has un-allocated disk space available the free space can be used for the datastore. Alternatively add another drive.
+
When enabling MultiSite, ensure sufficient disk space is available. 13 GB of disk space is the minimum required for a DataStore <br/>
 +
If the drive has un-allocated disk space available, the free space can be used for the DataStore. Alternatively, add another drive. <br/><br/>
  
To partition the free space to be used for the datastore the wanos-fdisk utility can be used:
+
Follow the steps in [[ Change_DataStore_Location | Changing a DataStore Location]]
<pre>
+
sudo /tce/etc/wanos/wanos-fdisk sda
+
</pre>
+
 
+
To format the new partition:
+
<pre>
+
sudo mkfs.ext3 sda2
+
</pre>
+
 
+
Reboots may be required in between. Once ready to be used, the partition will display in the Settings Tab:
+
 
+
http://wanos.co/wan-optimization/wp-content/uploads/2015/10/datastore_config1.png
+
 
+
Summary of command list:
+
<pre>
+
sudo /tce/etc/wanos/wanos-fdisk sda
+
sudo reboot
+
sudo mkfs.ext3 /dev/sda2
+
sudo reboot
+
Set the datastore to sda2 in the gui
+
</pre>
+
 
+
 
+
Related page: [[ Change_DataStore_Location ]]
+

Revision as of 14:12, 13 November 2015

Insufficient Disk Space

When enabling MultiSite, ensure sufficient disk space is available. 13 GB of disk space is the minimum required for a DataStore
If the drive has un-allocated disk space available, the free space can be used for the DataStore. Alternatively, add another drive.

Follow the steps in Changing a DataStore Location