Path of toplog

ARUN Posted in FILE PATH ( conf, logs etc), LOG FILES, WHM BACKEND
0

/var/log/dcpumon/toplog…..

Repair all mysql database on a server

ARUN Posted in MYSQL
0

mysqlcheck -Ar

ERROR: PleskFatalException Unable to connect to database: saved admin password is incorrect.

ARUN Posted in PLESK FRONTEND
0

While trying to access the plesk admin page we get the below error :

ERROR: PleskFatalException Unable to connect to database: saved admin password is incorrect.

Solution :

Try resetting the admin password from within mysql.

You can get the details about resetting root mysql password using the link below. Change the commands accordingly an reset the password for  user  ”admin”

http://webhostingdevelopment.com/forum/index.php/2011/07/how-to-reset-mysql-root-password-in-linux-centos/

-bash: httpd: command not found

ARUN Posted in Uncategorized
0

root@vps [~]# httpd -l
-bash: httpd: command not found
root@vps [~]#

Solution :

root@vps1 [/usr/bin]# ln -s /usr/local/apache/bin/httpd
root@vps1 [/usr/bin]# cd

/etc/cron.weekly/chkrootkit.sh: line 3: mail: command not found

ARUN Posted in ERROR
0

/etc/cron.weekly/chkrootkit.sh:

/etc/cron.weekly/chkrootkit.sh: line 3: mail: command not found
/etc/cron.weekly/rkhunter.sh:

/etc/cron.weekly/rkhunter.sh: line 2: rkhunter: command not found

Solution :

yum install mailx.x86_64

/usr/bin/perl: error while loading shared libraries: libc.so.6: failed to map segment from shared object: Cannot allocate memory

ARUN Posted in ERROR, WHM BACKEND
0

Getting the below error in apache error logs and the website giving a Internal server error 500

Solution :

Check  RLimitMEM is enabled. If so disable and restart apache.

vi /usr/local/apache/conf/httpd.conf

 

test

ARUN Posted in LOG ANALYSIS
0

test

Backend path where the plesk emails are stored

ARUN Posted in MAIL, PLESK BACKEND, QMAIL
0

Plesk mail directory path :

/var/qmail/mailnames/DOMAIN.com/USERNAME

When we create a folder from within the webmail its created at the backend on

/var/qmail/mailnames/DOMAIN.com/USERNAME/Maildir/.FOLDER_NAME

ITS A HIDDEN FILE

Command to change the date on linux server

ARUN Posted in LINUX COMMANDS
0

[   date --set="10 Jan 2012 21:08:50"    ]

Moodle admin login page gives blank page after logged in.

ARUN Posted in ERROR, INSTALLATION
0
Moodle admin login page gives blank page after logged in.
Solution :
open moodle config file
vi config.php
and insert the below at the end of file
=============================================================
ini_set ('error_reporting', E_ALL);
ini_set ('display_errors', 1);
ini_set ('display_startup_errors', 1);
ini_set ('log_errors', 1);
ini_set ('error_log', 'syslog');

=============================================================

Access site and you can see the error. Comment out the lines giving errors and see
To commnet out you can use
/**  PHP CODE */