Dive into the archives.
- Unable to create backup session: Specified file is not accessible
This error happens in Plesk when you try to make a backup from the web interface.
The cause is that Plesk can´t write in the temporal folder specified to storage backups because the owner is root:
ll /var/lib/psa/dumps/
drwx—— 9 root root 4096 Apr 1 14:21 tmp
To fix this change the ownership of the [...]
- Obtener información de un certificado SSL
Para obtener la información de un certificado SSL desde la consola podemos utilizar openssl.
En determinadas ocasiones si no se tiene acceso a un navegador web puede resultar complicado comprobar los datos de un certificado SSL. Esta operacion que es trivial con cualquier navegador, puede resultar algo mas compleja desde la consola.
- #2002 - The server is not responding - phpmyadmin Error
This is a common error in cPanel, here is the fix:
First edit the config file /usr/local/cpanel/base/3rdparty/phpMyAdmin/config.inc.php
Then, change the two following lines from
$cfg['Servers'][$i]['socket'] = ”;
$cfg['Servers'][$i]['connect_type'] = ‘tcp’;
to
$cfg['Servers'][$i]['socket'] = ‘/var/lib/mysql/mysql.sock’;
$cfg['Servers'][$i]['connect_type'] = ’socket’;
Finish restarting mysql
/etc/init.d/mysql restart
