Si por alguna razón tienes la necesidad de aumentar la partición /tmp de tu servidor cPanel corriendo bajo Linux, la manera ideal que he encontrado de hacerlo es haciendo uso del script de securización que el mismo cPanel te provee. Este procedimiento me ha servido en varias ocasiones, sin embargo no garantizo que funcione para todo el mundo, si sigues esta guía, lo haces bajo tu propia responsabilidad.
Los pasos para lograr estos cambios son simples:
Editamos el archivo /scripts/securetmp
pico -w /scripts/securetmp |
We look for the line "my $ tmpdsksize = 512000; # Must be larger than 250000″, and replace it with a higher number, in this case had a 512 MB a 1024 MB:
my $tmpdsksize = 1024000; # Must be larger than 250000 |
Then stop httpd and mysql services:
service mysql stop
service httpd stop |
We search processes tailwatchd:
pstree -p | grep tailwatchd |
That command will return something like this:
|-tailwatchd(4956) |
Then, run: kill -9 4956 en este caso.
Desmontamos /var/tmp:
umount /var/tmp |
Vemos si hay algún usuario usando la partición /tmp
fuser -cu /tmp |
And kill the process appears.
Dismantle and delete / tmp, creamos la partición desde cero y reiniciamos servicios httpd/mysql
umount /tmp
rm -rf /usr/tmpDSK
/scripts/securetmp --auto
service mysql start
service httpd start |
Finally to make sure everything goes well, tried rebooting the machine:
reboot |
If everything will be lifted well functioned, otherwise you'll have to dig through the logs or riding the system in rescue mode.
SOURCE: http://www.encuentroalternativo.com/aumentar-el-tamano-de-particion-tmp-en-cpanel/