• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Resolved Change the disk where the domains are stored

Luis_V

New Pleskian
Hello
I need to change the hard drive where the domain data is stored, I've tried changing the directory in psa.conf, but it doesn't work. please help me
 
You can use different hard drive/partition even for specific domain if you want, but you need to prepare/mount these locations before using any transfer tools.
 
You can use different hard drive/partition even for specific domain if you want, but you need to prepare/mount these locations before using any transfer tools.
Ok thanks for the info, but I already had the hard drives mounted in raid 10 and still I haven't been able to make it work, can you tell me some tutorial?
 
If you didn't install Plesk yet:

Bash:
mkdir -p /var/www/vhosts

lsblk

mount /dev/<yourdevicename>/ /var/www/vhosts

lsblk (make sure it's mounted)

Then Install Plesk.

If you already installed Plesk:

Bash:
mkdir /var/www/vhosts2

mv /var/www/vhosts/* /var/www/vhosts2

lsblk (get your device name)

mount /dev/<yourdevicename>/ /var/www/vhosts

lsblk (make sure it's mounted)

mv /var/www/vhosts2/* /var/www/vhosts

rm -rf /var/www/vhosts/.skel/0

Requirements:

*You need to create full server backup before these operations.
*You need to make file system (mkfs) on the selected hard drive before these operations.
*You need to mount the location only when the target folder is empty.
*You need to make these changes persist on the next reboot by adding UUID in the fstab file.
*You need to remove the 0 folder on the last command after completion.
 
If you didn't install Plesk yet:

Bash:
mkdir -p /var/www/vhosts

lsblk

mount /dev/<yourdevicename>/ /var/www/vhosts

lsblk (make sure it's mounted)

Then Install Plesk.

If you already installed Plesk:

Bash:
mkdir /var/www/vhosts2

mv /var/www/vhosts/* /var/www/vhosts2

lsblk (get your device name)

mount /dev/<yourdevicename>/ /var/www/vhosts

lsblk (make sure it's mounted)

mv /var/www/vhosts2/* /var/www/vhosts

rm -rf /var/www/vhosts/.skel/0

Requirements:

*You need to create full server backup before these operations.
*You need to make file system (mkfs) on the selected hard drive before these operations.
*You need to mount the location only when the target folder is empty.
*You need to make these changes persist on the next reboot by adding UUID in the fstab file.
*You need to remove the 0 folder on the last command after completion.

Ok thank you very much I will try it if it works, I have already tried several methods and nothing if this works
 
Back
Top