MySQL Governor installation in without control panel server Run the below command to install MySQL Governor in plain server or without control panel server. yum install db-governor –enablerepo=cloudlinux-updates-testing yum update mysql-server mysql-devel mysql –enablerepo=cloudlinux-updates-testing Add the below line in my.cnf with root password [dbgovernor] Run the below command to start. service db_governor restart
Category: Uncategorized
Exim causing load on server
Exim causing load on server Login to server via SSH. Once login then login to mysql [email protected]rver24x7 [~]# mysql Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1851 Server version: 5.1.65-cll MySQL Community Server (GPL) Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved. …
How to create account using SSH in cpanel
How to create account using SSH in cpanel Login to server via SSH. Use cpanel create account script. Syntax: /scripts/createacct domainname.com username password Example: /scripts/createacct elinux.co.in elinuxco q1w2e3r4 It will prompt for ok? Press y The above information is enough to create a temporary cpanel account. It will show the below output. +===================================+ | …
Google Apps plugin for cpanel
How to install google apps plugin for cpanel. Go to the below path where you want to download the tar file. cd /usr/local/src/ Download the tar file. [email protected] [/usr/local/src]# wget http://google-apps-wizard-cpanel-plugin.googlecode.com/files/gaw-2.0.tar –2012-09-24 15:59:34– http://google-apps-wizard-cpanel-plugin.googlecode.com/files/gaw-2.0.tar Resolving google-apps-wizard-cpanel-plugin.googlecode.com… 74.125.31.82, 2404:6800:4008:c00::52 Connecting to google-apps-wizard-cpanel-plugin.googlecode.com|74.125.31.82|:80… connected. HTTP request sent, awaiting response… 200 OK Length: 184320 (180K) [application/octet-stream] Saving to: `gaw-2.0.tar’ …
How To Install Process Resource Monitor (PRM)
How To Install Process Resource Monitor (PRM) Description: PRM monitors the process table on a given system and matches process id’s with set resource limits in the config file or per-process based rules. Process id’s that match or exceed the set limits are logged and killed; includes e-mail alerts, kernel logging routine and more Downloading, Installing …
Block FTP access using Iptables
Iptables block ftp access Completely disable the FTP access on the server using below iptables rule: iptables -A INPUT -p tcp –dport 21 -j DROP If you want to block FTP access for a Specific IP then run the below command: iptables -A INPUT -p tcp -s 10.10.10.10 –dport 21 -j DROP To Disable FTP …
Block FTP access using csf firewall
To completely disable the FTP access on the server follow the below steps: [email protected][#] vi /etc/csf/csf.conf Search for the lines: # Allow incoming TCP ports TCP_IN = and remove the port 21 from the list Save and quit. And then restart the CSF firewall using the below command: [email protected][#] csf -r If you want to …
Yum error Time out while Loading fastestmirror
Yum is giving error Time out while Loading fastestmirror While installing any application using yum getting time out error while loading fastest mirror. It seems that mirrors are not able to download the packages to the server as there is some network issue or any other issues. First check the below possibilities if there is a …
How to install MailScanner in CPanel
How to install MailScanner in CPanel If you have the cPanel Clamavconnector installed (WHM > Add-on Modules) remove it – it will break MailScanner. Login to server via SSH now. Download the package using the below link: wget http://www.configserver.com/free/msinstall.tar.gz Untar the package using the below command. tar -xzf msinstall.tar.gz go inside the folder. cd …
clamd AntiVirus daemon giving local socket error while starting
clamd AntiVirus daemon giving local socket error while starting Clamd is giving below error while starting. Starting Clam AntiVirus Daemon: ERROR: LOCAL: Socket file /var/clamd could not be bound: Permission denied ERROR: Can’t unlink the socket file /var/clamd Open clamd.conf vi /etc/clamd.conf Comment the below lines by giving # infront of the line. This will …