Remote FTP backup tmp file locations

mvdig

Registered
Jun 20, 2007
3
0
51
Dear Members,

My dedicated server I have two hard disk
primary hard disk is 128GB Samsung 830 Series SSD
and secondary Hrad disk is SATA 1TB disk

All my websites used home2 1TB disk

primary hard I use system run and MYSQL server

My issue is when start remote backup to ftp secure storage on same LAN smal websites less than 100Gb disk space websites work fine
but I have 150GB two websites not work server primary disk full than I need remove manually all backup sites
automatically in /home/cpbackuptmp/cpbackup/daily

So how I can change cpbackuptmp locations to my server secondary hard disk /home2 ??

Regards
mvdig
 

cPanelMichael

Administrator
Staff member
Apr 11, 2011
47,880
2,260
463
Hello :)

You can create a symbolic link from the secondary partition to /home/cpbackuptmp as a workaround. EX:

Code:
# mkdir /home2/cpbackuptmp
# ln -s /home2/cpbackuptmp /home/cpbackuptmp
Thank you.