<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>System Network Programming Solution - Linux - windows - centos- security- cpanel - plesk -directadmin helm&#187; whm</title>
	<atom:link href="http://thegioinguonmo.com/tag/whm/feed/" rel="self" type="application/rss+xml" />
	<link>http://thegioinguonmo.com</link>
	<description>SHARING EVERYTHING</description>
	<lastBuildDate>Mon, 06 Feb 2012 09:45:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Howto: Change cPanel theme for multiple accounts.</title>
		<link>http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/howto-change-cpanel-theme-for-multiple-accounts.html</link>
		<comments>http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/howto-change-cpanel-theme-for-multiple-accounts.html#comments</comments>
		<pubDate>Mon, 23 Jan 2012 21:40:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[format]]></category>
		<category><![CDATA[RS]]></category>
		<category><![CDATA[whm]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=922</guid>
		<description><![CDATA[How to change cPanel theme for multiple accounts? The cPanel theme for an account is specified in the /var/cpanel/users/username file in the format RS=value For example: BWLIMIT=unlimited DEMO=0 DNS=domainname.com FEATURELIST=default HASCGI=1 IP=IPHERE LANG=english LOCALE=en MAXADDON=0 MAXFTP=0 MAXLST=0 MAXPARK=0 MAXPOP=5 MAXSQL=0 MAXSUB=0 MTIME=1271068514 OWNER=root PLAN=default STARTDATE=1228721668 USER=username RS=x3 where, x3 is the theme. WHM only provides [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p><strong>How to change cPanel theme for multiple accounts?</strong></p></blockquote>
<p>The cPanel theme for an account is specified in the <strong>/var/cpanel/users/username file</strong> in the format</p>
<p>RS=value</p>
<p><strong>For example:</strong></p>
<blockquote><p>BWLIMIT=unlimited<br />
DEMO=0<br />
DNS=domainname.com<br />
FEATURELIST=default<br />
HASCGI=1<br />
IP=IPHERE<br />
LANG=english<br />
LOCALE=en<br />
MAXADDON=0<br />
MAXFTP=0<br />
MAXLST=0<br />
MAXPARK=0<br />
MAXPOP=5<br />
MAXSQL=0<br />
MAXSUB=0<br />
MTIME=1271068514<br />
OWNER=root<br />
PLAN=default<br />
STARTDATE=1228721668<br />
USER=username<br />
<strong>RS=x3</strong></p></blockquote>
<p>where, x3 is the theme. WHM only provides the option to change the cPanel theme for an account one at a time. In order to <strong>change the theme for all the accounts at once</strong>, execute the following script:</p>
<blockquote><p><strong>for i in `ls -la /var/cpanel/users/ | awk ‘{print $9}’ | sed ‘1,3 d’`<br />
do<br />
sed -i “/RS/d” $i;<br />
echo “RS=x3″ &gt;&gt; $i;<br />
done;</strong></p></blockquote>
<p>here, it will change the cPanel theme of all the accounts on the server to ‘x3′ theme.  Since all the files are updated manually, you need to execute the following script to rebuild the cache</p>
<blockquote><p><strong>/scripts/updateuserdomains</strong></p></blockquote>
<p><strong>Note:</strong> The single OR double quotes in the script may change to dot (.) on copy/pasting the command in the shell, so make sure you correct those before executing the command.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/howto-change-cpanel-theme-for-multiple-accounts.html" title="formattare centos da directadmin">formattare centos da directadmin</a> (3)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/howto-change-cpanel-theme-for-multiple-accounts.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Securing Your /tmp Partition with Cpanel/WHM</title>
		<link>http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/securing-your-tmp-partition-with-cpanelwhm.html</link>
		<comments>http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/securing-your-tmp-partition-with-cpanelwhm.html#comments</comments>
		<pubDate>Thu, 19 Jan 2012 21:48:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[everything]]></category>
		<category><![CDATA[ext3]]></category>
		<category><![CDATA[noexec]]></category>
		<category><![CDATA[partition]]></category>
		<category><![CDATA[symbolic link]]></category>
		<category><![CDATA[tmpfs]]></category>
		<category><![CDATA[whm]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=696</guid>
		<description><![CDATA[If you are renting a server then chances are everything is lumped in / and a small amount partitioned for /boot and some for swap. With this current setup, you have no room for making more partitions unless you have a second hard-drive. Learn how to create a secure /tmp partition even while your server is already up [...]]]></description>
			<content:encoded><![CDATA[<p>If you are renting a server then chances are everything is lumped in / and a small amount partitioned for /boot and some for swap. With this current setup, you have no room for making more partitions unless you have a second hard-drive. Learn how to create a secure /tmp partition even while your server is already up and running.<br />
Recently, I found out it would be worthwhile to give /tmp it’s own partition and mount it using noexec- This would protect your system from MANY local and remote exploits of rootkits being run from your /tmp folder.</p>
<p>What we are doing it creating a file that we will use to mount at /tmp. So log into SSH and SU to root so we may being!</p>
<p><code>cd /dev</code></p>
<p>Create 1GB file for our /tmp partition. If you need more space, make count size larger.</p>
<p><code>dd if=/dev/zero of=tmpMnt bs=1024 count=1000000</code></p>
<p>Make an extended filesystem for our tmpMnt file</p>
<p><code>/sbin/mke2fs /dev/tmpMnt</code></p>
<p>Backup your /tmp dir- I had mysql.sock file that I needed to recreate the symbolic link for. Other programs may use it to store cache files or whatever.</p>
<p><code>cd /</code></p>
<p><code>cp -R /tmp /tmp_backup</code></p>
<p>Mount the new /tmp filesystem with noexec</p>
<p><code>mount -o loop,noexec,nosuid,rw /dev/tmpMnt /tmp</code></p>
<p><code>chmod 1777 /tmp</code></p>
<p>Copy everything back to new /tmp and remove backup</p>
<p>code:<br />
<code>cp -R /tmp_backup/* /tmp/</code></p>
<p>code:</p>
<p><code>rm -rf /tmp_backup</code></p>
<p>Now we need to add this to fstab so it mounts automatically on reboots.</p>
<p><code>pico -w /etc/fstab</code></p>
<p>You should see something like this:</p>
<blockquote><p>/dev/hda3               /                       ext3    defaults,usrquota        1 1<br />
/dev/hda1               /boot                   ext3    defaults        1 2<br />
none                    /dev/pts                devpts  gid=5,mode=620  0 0<br />
none                    /proc                   proc    defaults        0 0<br />
none                    /dev/shm                tmpfs   defaults        0 0<br />
/dev/hda2               swap                    swap    defaults        0 0</p></blockquote>
<p>At the bottom add</p>
<blockquote><p>dev/tmpMnt             /tmp                    ext2    loop,noexec,nosuid,rw  0 0</p></blockquote>
<p>(Each space is a tab)<br />
Save it!</p>
<p><code>Ctrl + X and Y</code></p>
<p>Your done- /tmp is now mounted as noexec. You can sleep a little bit safer tonight. I created a hello world c++ and compiled it then moved it to /tmp. Upon trying to run it (even chmod +x’ed), it gives the following error:</p>
<p><code>bash: ./a.out: Permission denied</code></p>
<p>Yay! /tmp no longer has execute permissions</p>
]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/securing-your-tmp-partition-with-cpanelwhm.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Account Creation Status: failed (out of available ip addresses)</title>
		<link>http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/account-creation-status-failed-out-of-available-ip-addresses.html</link>
		<comments>http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/account-creation-status-failed-out-of-available-ip-addresses.html#comments</comments>
		<pubDate>Sun, 15 Jan 2012 21:43:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[package]]></category>
		<category><![CDATA[use]]></category>
		<category><![CDATA[whm]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=458</guid>
		<description><![CDATA[Account Creation Status: failed (Your system has run out of available ip addresses, or you do not have permission to use any more ip addresses. (Unable to find an ip address.) ) You receive the “Account Creation Status: failed” error message while adding a domain from WHM &#62;&#62; Account Functions &#62;&#62; “Create a New Account” [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Account Creation Status: failed (Your system has run out of available ip addresses, or you do not have permission to use any more ip addresses. (Unable to find an ip address.) )</strong><br />
You receive the<strong> “Account Creation Status: failed”</strong> error message while adding a domain from <strong>WHM &gt;&gt; Account Functions &gt;&gt; “Create a New Account”</strong> option which states that there is no free IP address to assign to your new domain.</p>
<p>The package you are using while adding a domain has the “Dedicated IP” option enabled which searches for a free IP on the server and tries to assign to the every new domain you create. To overcome the issue, you will have to <strong>deselect the “Dedicated IP” option from the package</strong> which can be achieved via ssh.</p>
<p>Edit the <strong>package file located under /var/cpanel/packages</strong></p>
<blockquote><p><strong><code># vi /var/cpanel/packages/packagename</code></strong></p></blockquote>
<p><strong>Search for </strong></p>
<blockquote><p><strong>IP=y</strong></p></blockquote>
<p><strong>and replace it with</strong></p>
<blockquote><p><strong>IP=n</strong></p></blockquote>
<p><strong>Save the file</strong>. You should now be able to create an account from WHM successfully.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/account-creation-status-failed-out-of-available-ip-addresses.html" title="account creatin failed Your system has run out of available ip addresses or you do not have permission to use any more ip addresses">account creatin failed Your system has run out of available ip addresses or you do not have permission to use any more ip addresses</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/account-creation-status-failed-out-of-available-ip-addresses.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrade WHM / cPanel Linux server to EDGE release</title>
		<link>http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/upgrade-whm-cpanel-linux-server-to-edge-release.html</link>
		<comments>http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/upgrade-whm-cpanel-linux-server-to-edge-release.html#comments</comments>
		<pubDate>Sat, 14 Jan 2012 21:42:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[EDGE]]></category>
		<category><![CDATA[whm]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=385</guid>
		<description><![CDATA[Q. How do I upgrade my CentOS Linux 5.0 dedicated server to WHM / cPanel edge release? A. You can upgrade to EDGE release from WHM manager. Please note that Edge is the bleeding edge tree. While it has the newest features; It has undergone the least amount of testing (if any). You generally shouldn’t [...]]]></description>
			<content:encoded><![CDATA[<p><span style="color: #ff0000;"><strong>Q</strong>.</span> How do I upgrade my CentOS Linux 5.0 dedicated server to WHM / cPanel edge release?</p>
<p><span style="color: #008000;"><strong>A</strong>.</span> You can upgrade to EDGE release from WHM manager. Please note that Edge is the bleeding edge tree. While it has the newest features; It has undergone the least amount of testing (if any). You generally shouldn’t run this build unless you need a bug fix or feature in it. Once an equivalent CURRENT or RELEASE build has been released, you should switch away from this.</p>
<h3>Configure EDGE upgrade</h3>
<p>a] Just login to WHM</p>
<p>b] Look for Server Configuration</p>
<p>c] Click on Update Config</p>
<p>d] Set cPanel/WHM Updates option to Manual Updates Only (bleeding EDGE tree)<br />
<img src="http://thegioinguonmo.com/images/whm-cpanel-edge-upgrade.jpg" alt="whm cpanel edge upgrade Upgrade WHM / cPanel Linux server to EDGE release "  title="Upgrade WHM / cPanel Linux server to EDGE release " /><br />
e] Click on Save.</p>
<h3>To start upgrade procedure</h3>
<p>Look for cPanel</p>
<p>Click on Upgrade to Latest Version</p>
<p>Click on <strong>Click Upgrade</strong> button</p>
<h3>Edge upgrade from a shell or command prompt</h3>
<p>Login as the root via ssh. Edit /etc/cpupdate.conf file:<br />
<code># vi /etc/cpupdate.conf</code><br />
Find line<br />
<code>CPANEL=stable</code><br />
Replace with:<br />
<code>CPANEL=manual-edge</code><br />
Save and close the file. Now update to edge:<br />
<code># /scripts/upcp --force</code></p>
]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/upgrade-whm-cpanel-linux-server-to-edge-release.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LogView Install</title>
		<link>http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/logview-install.html</link>
		<comments>http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/logview-install.html#comments</comments>
		<pubDate>Mon, 02 Jan 2012 04:40:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[Login]]></category>
		<category><![CDATA[root user]]></category>
		<category><![CDATA[user]]></category>
		<category><![CDATA[whm]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=165</guid>
		<description><![CDATA[LogView Install Instructions &#160; Login to your server as a root user wget http://www.logview.org/logview-install chmod +x logview-install ./logview-install Wait for install complete message rm -f logview-install LogView is now installed on your server! Login to WHM Go to Add-Ons &#62;&#62; LogView – File System Log Viewer Start using LogView Incoming search terms:j2sdk-1_4_2_18-linux-i586-rpm bin (3)how to [...]]]></description>
			<content:encoded><![CDATA[<p>LogView Install Instructions</p>
<p>&nbsp;</p>
<ul>
<li>Login to your server as a root user</li>
<li>wget http://www.logview.org/logview-install</li>
<li>chmod +x logview-install</li>
<li>./logview-install</li>
<li>Wait for install complete message</li>
<li>rm -f logview-install</li>
</ul>
<p><strong>LogView is now installed on your server!</strong></p>
<ul>
<li>Login to WHM</li>
<li>Go to Add-Ons &gt;&gt; LogView – File System Log Viewer</li>
<li>Start using LogView</li>
</ul>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/logview-install.html" title="j2sdk-1_4_2_18-linux-i586-rpm bin">j2sdk-1_4_2_18-linux-i586-rpm bin</a> (3)</li><li><a href="http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/logview-install.html" title="how to install logview to cpanel">how to install logview to cpanel</a> (1)</li><li><a href="http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/logview-install.html" title="lighttpd cpanel whm">lighttpd cpanel whm</a> (1)</li><li><a href="http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/logview-install.html" title="logview cpanel">logview cpanel</a> (1)</li><li><a href="http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/logview-install.html" title="no option of databases on cpanel">no option of databases on cpanel</a> (1)</li><li><a href="http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/logview-install.html" title="whm logview howto">whm logview howto</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/logview-install.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ConfigServer Explorer (cse)</title>
		<link>http://thegioinguonmo.com/os/linux/configserver-explorer-cse.html</link>
		<comments>http://thegioinguonmo.com/os/linux/configserver-explorer-cse.html#comments</comments>
		<pubDate>Mon, 26 Dec 2011 16:39:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[rm]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[whm]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=84</guid>
		<description><![CDATA[This is an exclusive! and free! add-on product for cPanel/WHM. The product provides you with a full featured Filesystem explorer and a Virtual Console to use within your web browser in WHM. It gives you root access from the top level of your disks and allows you to enter non-interactive commands and see the output. [...]]]></description>
			<content:encoded><![CDATA[<p>This is an exclusive! and <strong>free!</strong> add-on product for cPanel/WHM. The product provides you with a full featured Filesystem explorer and a Virtual Console to use within your web browser in WHM. It gives you root access from the top level of your disks and allows you to enter non-interactive commands and see the output.</p>
<p>The File Manager/Console can be an essential tool for:</p>
<ul>
<li>Server Administrators unfamiliar with server shell commands</li>
<li>Repairing a server where access via SSH is not available*</li>
<li>Repair access to a server due to an incorrectly configured firewall or SSH</li>
<li>Edit files directly on the server</li>
<li>Functions for files and directories:
<ul>
<li>Copy</li>
<li>Delete</li>
<li>Rename</li>
<li>Move</li>
<li>CHMOD (change permissions)</li>
<li>CHOWN (change ownership)</li>
</ul>
</li>
<li>Uploading files to the server in BINARY or ASCII mode</li>
<li>Downloading files from the server</li>
<li>Easy access to your server configuration from within your browser</li>
<li>Access restricted to the root user through WHM only (no access for resellers)</li>
</ul>
<p>To install or upgrade cse simply do the following from the root shell via SSH:</p>
<blockquote><p>rm -fv cse.tgz<br />
wget http://www.configserver.com/free/cse.tgz<br />
tar -xzf cse.tgz<br />
cd cse<br />
sh install.sh<br />
cd ..<br />
rm -Rfv cse/ cse.tgz</p></blockquote>
<p>Then login to WHM and scroll to the bottom of the left hand menu and you should see “ConfigServer Explorer”</p>
<p>If you want to uninstall, simply:</p>
<blockquote><p>rm -fv /usr/local/cpanel/whostmgr/docroot/cgi/addon_cse.cgi<br />
rm -fv /usr/local/cpanel/whostmgr/docroot/cgi/cseversion.txt</p></blockquote>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/os/linux/configserver-explorer-cse.html" title="cpanel message imap failed @">cpanel message imap failed @</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/os/linux/configserver-explorer-cse.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to monitor and auto restart cron service using cPanel chkservd?</title>
		<link>http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/how-to-monitor-and-auto-restart-cron-service-using-cpanel-chkservd.html</link>
		<comments>http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/how-to-monitor-and-auto-restart-cron-service-using-cpanel-chkservd.html#comments</comments>
		<pubDate>Thu, 08 Dec 2011 08:11:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[Logs]]></category>
		<category><![CDATA[offline]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[stop]]></category>
		<category><![CDATA[whm]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=954</guid>
		<description><![CDATA[Sometimes the crond service fails quite often without any clue and it becomes necessary to monitor the cron service and auto-restart it. cPanel offers ‘chkservd’, a monitoring daemon that monitors the services on the server and restart them if found offline. cPanel/WHM do not provide an option to include the ‘crond’ service under the monitoring [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Sometimes the crond service fails quite often without any clue and it becomes necessary to monitor the cron service and auto-restart it.</strong> cPanel offers ‘chkservd’, a monitoring daemon that monitors the services on the server and restart them if found offline. cPanel/WHM do not provide an option to include the ‘crond’ service under the monitoring daemon, so following are the steps you can follow to achieve it:</p>
<p>Create a crond file under the chkservd.d directory where all the services files are placed:</p>
<blockquote><p><strong># pico /etc/chkserv.d/crond</strong></p></blockquote>
<p>Add the following and save the file:</p>
<blockquote><p><strong>service[crond]=x,x,x,/etc/init.d/crond restart,crond,root</strong></p></blockquote>
<p>Now you need to edit the chkservd configuration file and enable the crond service for monitoring</p>
<blockquote><p><strong># pico /etc/chkserv.d/chkservd.conf</strong></p></blockquote>
<p>add the following line at the end of the file</p>
<blockquote><p><strong>crond:1</strong></p></blockquote>
<p>Now, save the file and restart the chkservd service for the new changes to take affect:</p>
<blockquote><p><strong># /scripts/restartsrv chkservd</strong></p></blockquote>
<p>In order to verify if chkservd auto-restarts the crond service if found offline, stop the service manually</p>
<blockquote><p><strong># service crond stop</strong></p></blockquote>
<p>and watch the logs</p>
<blockquote><p><strong># tail -f /var/log/chkservd.log</strong></p></blockquote>
<p>You will notice that the crond service is restarted automatically within 5 minutes.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/how-to-monitor-and-auto-restart-cron-service-using-cpanel-chkservd.html" title="how to auto restart apache cpanel">how to auto restart apache cpanel</a> (4)</li><li><a href="http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/how-to-monitor-and-auto-restart-cron-service-using-cpanel-chkservd.html" title="cron process auto restart">cron process auto restart</a> (2)</li><li><a href="http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/how-to-monitor-and-auto-restart-cron-service-using-cpanel-chkservd.html" title="restart log cpanel">restart log cpanel</a> (1)</li><li><a href="http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/how-to-monitor-and-auto-restart-cron-service-using-cpanel-chkservd.html" title="queueprocd failed cpanel">queueprocd failed cpanel</a> (1)</li><li><a href="http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/how-to-monitor-and-auto-restart-cron-service-using-cpanel-chkservd.html" title="mysql database size is 0mb">mysql database size is 0mb</a> (1)</li><li><a href="http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/how-to-monitor-and-auto-restart-cron-service-using-cpanel-chkservd.html" title="linux /usr/bin/mysqladmin -u root -h error: access denied for user root@localhost (using password: no)">linux /usr/bin/mysqladmin -u root -h error: access denied for user root@localhost (using password: no)</a> (1)</li><li><a href="http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/how-to-monitor-and-auto-restart-cron-service-using-cpanel-chkservd.html" title="how to monitor network restart">how to monitor network restart</a> (1)</li><li><a href="http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/how-to-monitor-and-auto-restart-cron-service-using-cpanel-chkservd.html" title="chkservd enable tcp">chkservd enable tcp</a> (1)</li><li><a href="http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/how-to-monitor-and-auto-restart-cron-service-using-cpanel-chkservd.html" title="cron syntax to restart apache cpanel">cron syntax to restart apache cpanel</a> (1)</li><li><a href="http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/how-to-monitor-and-auto-restart-cron-service-using-cpanel-chkservd.html" title="cpanel chkservd nginx">cpanel chkservd nginx</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/how-to-monitor-and-auto-restart-cron-service-using-cpanel-chkservd.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cpanel: mysql database size 0MB</title>
		<link>http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/cpanel-mysql-database-size-0mb.html</link>
		<comments>http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/cpanel-mysql-database-size-0mb.html#comments</comments>
		<pubDate>Thu, 08 Dec 2011 08:10:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[mysql database]]></category>
		<category><![CDATA[mysql databases]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[tweak settings]]></category>
		<category><![CDATA[whm]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=952</guid>
		<description><![CDATA[You may see the mysql database size as zero in cPanel &#62;&#62; ‘Mysql Databases’ option, though the databases contains tables and data. In order to include the size of the databases while displaying disk usage in cPanel/WHM, perform either of the following steps: 1) SSH to your server as root and edit the cpanel.config file [...]]]></description>
			<content:encoded><![CDATA[<p><strong>You may see the mysql database size as zero in cPanel &gt;&gt; ‘Mysql Databases’ option, though the databases contains tables and data.</strong> In order to include the size of the databases while displaying disk usage in cPanel/WHM, perform either of the following steps:<br />
<strong>1)</strong> SSH to your server as root and edit the cpanel.config file</p>
<blockquote><p><strong># pico /var/cpanel/cpanel.config</strong></p></blockquote>
<p>Search for</p>
<blockquote><p><strong>disk_usage_include_sqldbs=0</strong></p></blockquote>
<p>and change to</p>
<blockquote><p><strong>disk_usage_include_sqldbs=1</strong></p></blockquote>
<p>If the parameter is not present, add it. Save the file and execute the following command:</p>
<blockquote><p><strong># /scripts/update_db_cache</strong></p></blockquote>
<p>OR</p>
<p><strong>2)</strong> Login to the WHM, goto Tweak Settings &gt;&gt; ‘SQL’ section and enable the following option:</p>
<blockquote><p><strong>When displaying disk usage in cpanel/WHM include Postgresql and MySQL.</strong></p></blockquote>
<p>This will fix the issue.</p>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/cpanel-mysql-database-size-0mb.html" title="cpanel database 0mb">cpanel database 0mb</a> (2)</li><li><a href="http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/cpanel-mysql-database-size-0mb.html" title="cpanel backups database 0mb">cpanel backups database 0mb</a> (1)</li><li><a href="http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/cpanel-mysql-database-size-0mb.html" title="cpanel copy database database 0mb">cpanel copy database database 0mb</a> (1)</li><li><a href="http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/cpanel-mysql-database-size-0mb.html" title="email size zero cpanel">email size zero cpanel</a> (1)</li><li><a href="http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/cpanel-mysql-database-size-0mb.html" title="mysql database sizes linux centos">mysql database sizes linux centos</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/hosting-controller/cpanel-control-panel/cpanel-mysql-database-size-0mb.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto: install CSF on your server.</title>
		<link>http://thegioinguonmo.com/security/howto-install-csf-on-your-server.html</link>
		<comments>http://thegioinguonmo.com/security/howto-install-csf-on-your-server.html#comments</comments>
		<pubDate>Thu, 08 Dec 2011 06:32:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[tar xzf]]></category>
		<category><![CDATA[wget]]></category>
		<category><![CDATA[whm]]></category>
		<category><![CDATA[xzf]]></category>

		<guid isPermaLink="false">http://thegioinguonmo.com/?p=912</guid>
		<description><![CDATA[Howto install CSF on your server: 1) cd /usr/local/src/ 2) download csf: wget http://www.configserver.com/free/csf.tgz 3) tar -xzf csf.tgz 4) goto the csf directory : cd csf 5) ./install.sh Once it is installed, you can either edit the configuration file from WHM &#62;&#62; Plugins &#62;&#62; “Config Server Security and Firewall” option. If you don’t have WHM/cPanel [...]]]></description>
			<content:encoded><![CDATA[<div>
<p><strong>Howto install CSF on your server</strong>:</p>
<blockquote><p><strong>1) cd /usr/local/src/<br />
2) download csf: wget http://www.configserver.com/free/csf.tgz<br />
3) tar -xzf csf.tgz<br />
4) goto the csf directory : cd csf<br />
5) ./install.sh</strong></p></blockquote>
<p>Once it is installed, you can either edit the configuration file from <strong>WHM &gt;&gt; Plugins &gt;&gt; “Config Server Security and Firewall” option</strong>.</p>
<p>If you don’t have WHM/cPanel on your server, the configuration and <strong>all the CSF related files are stored under /etc/csf directory</strong>. You need to edit the <strong>csf configuration file /etc/csf/csf.conf</strong> and make the changes as per your wish.</p>
<p>Once you make the required changes to your CSF configuration file and are sure, you are not going to block yourself out, change the following from</p>
<blockquote><p><strong>TESTING = “1″<br />
to<br />
TESTING = “0″</strong></p></blockquote>
<p>and restart the csf firewall using <strong>service csf restart</strong> command.</p>
</div>
<h4>Incoming search terms:</h4><ul><li><a href="http://thegioinguonmo.com/security/howto-install-csf-on-your-server.html" title="bash shell scripts install csf">bash shell scripts install csf</a> (1)</li><li><a href="http://thegioinguonmo.com/security/howto-install-csf-on-your-server.html" title="xen csf block server">xen csf block server</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>http://thegioinguonmo.com/security/howto-install-csf-on-your-server.html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: thegioinguonmo.com @ 2012-02-07 10:37:25 -->
