<?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>Linux Servers cPanel webhosting blog &#187; Linux Administrator Interview Questions</title>
	<atom:link href="http://www.theperfectarts.com/category/linux-administrator-interview-questions/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.theperfectarts.com</link>
	<description>Basics cPanel tutorials / issue,mysql,php errors etc</description>
	<lastBuildDate>Sat, 04 Feb 2012 17:18:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Server wide permission issue after enabling suphp</title>
		<link>http://www.theperfectarts.com/2012/01/server-wide-permission-issue-after-enabling-suphp/</link>
		<comments>http://www.theperfectarts.com/2012/01/server-wide-permission-issue-after-enabling-suphp/#comments</comments>
		<pubDate>Sun, 22 Jan 2012 09:24:01 +0000</pubDate>
		<dc:creator>Gunjan</dc:creator>
				<category><![CDATA[Basic Linux]]></category>
		<category><![CDATA[cPanel + cPanel scripts]]></category>
		<category><![CDATA[Dedicated Server Issue]]></category>
		<category><![CDATA[Linux Administrator Interview Questions]]></category>
		<category><![CDATA[Linux Permissions]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[VPS]]></category>
		<category><![CDATA[resolve 500 Internal Server Error]]></category>
		<category><![CDATA[scrip to correct ownership]]></category>
		<category><![CDATA[script to correct permission]]></category>
		<category><![CDATA[script to correct server wide permission]]></category>
		<category><![CDATA[script to correct user ownership]]></category>
		<category><![CDATA[script to resolve 500 internal server error]]></category>
		<category><![CDATA[script to resolve suphp issue]]></category>
		<category><![CDATA[Server wide .htacces php value issue]]></category>
		<category><![CDATA[Server wide ownership issue]]></category>
		<category><![CDATA[Server wide permission issue]]></category>
		<category><![CDATA[Server wide solution script]]></category>

		<guid isPermaLink="false">http://www.theperfectarts.com/?p=1877</guid>
		<description><![CDATA[After enabling the suphp on the server,many time 500 Internal Server Error occur due to the incorrect permission,ownership and incorrect php module defined in the .htaccess file and we can&#8217;t make the changes manually therefore we can use the following script to make the all the changes server. Login into the server as a root user [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript"><!--
google_ad_client = "ca-pub-1685490665026631";
/* Big images */
google_ad_slot = "0185136902";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-1685490665026631";
/* Big images */
google_ad_slot = "0185136902";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<script type="text/javascript">// <![CDATA[
            var _gaq = _gaq || [];   _gaq.push(['_setAccount', 'UA-27772211-1']);   _gaq.push(['_trackPageview']);   </p>
<p>(function() {     var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;     ga.src = </p>
<p>('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';     var s = </p>
<p>document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);   })();
// ]]&gt;</script><br />
After enabling the suphp on the server,many time 500 Internal Server Error occur due to the incorrect permission,ownership and incorrect php module defined in the .htaccess file and we can&#8217;t make the changes manually therefore we can use the following script to make the all the changes server.</p>
<p>Login into the server as a root user and follow the followings steps.</p>
<blockquote><p>
<strong>linux7802@server[~]#cat /root/suphppermission.sh</strong></p>
<p><strong>#!/bin/bash</strong></p>
<p><strong># Reset the directory permissions.</strong><br />
<strong>chmod 755 /opt/suphp</strong><br />
<strong>find /opt/suphp -type d -exec chmod 755 {} \;</strong></p>
<p><strong># Reset permission,ownership for cPanel user</strong><br />
<strong>for user in `/bin/ls /var/cpanel/users`; do</strong></p>
<p><strong>chown -R ${user}:${user} /home/${user}/public_html</strong><br />
<strong> chmod 755 /home/${user}/public_html</strong><br />
<strong> find /home/${user}/public_html -type f -exec chmod 644 {} \;</strong><br />
<strong> find /home/${user}/public_html -type d -exec chmod 755 {} \;</strong></p>
<p><strong># Remove <strong>php_values in the .htaccess file</strong>.</strong><br />
<strong> find /home/${user}/public_html -name &#8216;.htaccess&#8217; -exec sed -ie &#8216;s/php_value/#php_value/&#8217; {} \;</strong><br />
<strong> find /home/${user}/public_html -name &#8216;.htaccess&#8217; -exec sed -ie &#8216;s/php_flag/#php_flag/&#8217; {} \;</strong><br />
<strong>done</strong></p></blockquote>
<p>If you have any issue to copy the above content the download the script from following URL<br />
<a title="scr" href="http://theperfectarts.com/permission.txt" target="_blank">scr</a></p>
<p>&copy;2012 <a href="http://www.theperfectarts.com">Linux Servers cPanel webhosting blog</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.theperfectarts.com/2012/01/server-wide-permission-issue-after-enabling-suphp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>cPanel log to check when hosting created and deleted</title>
		<link>http://www.theperfectarts.com/2012/01/cpanel-log-to-check-when-hosting-created-and-deleted/</link>
		<comments>http://www.theperfectarts.com/2012/01/cpanel-log-to-check-when-hosting-created-and-deleted/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 13:28:55 +0000</pubDate>
		<dc:creator>Gunjan</dc:creator>
				<category><![CDATA[Basic Linux]]></category>
		<category><![CDATA[cPanel + cPanel scripts]]></category>
		<category><![CDATA[Linux Administrator Interview Questions]]></category>
		<category><![CDATA[accounting.log]]></category>
		<category><![CDATA[accounting.log for security]]></category>
		<category><![CDATA[check hosting account loghs]]></category>
		<category><![CDATA[cpanel accounting.log]]></category>
		<category><![CDATA[delete logs]]></category>
		<category><![CDATA[modify logs]]></category>
		<category><![CDATA[remove logs]]></category>

		<guid isPermaLink="false">http://www.theperfectarts.com/?p=1867</guid>
		<description><![CDATA[In the recent days, we all are facing the hacking issue at that time, we always see problem like account termination from the serve at that time, we can use the following log file to investigate the issue as its providing when hosting account was created, owner changed or account deleted from the server. For [...]]]></description>
			<content:encoded><![CDATA[<p>In the recent days, we all are facing the hacking issue at that time, we always see problem like account termination from the serve at that time, we can use the following log file to investigate the issue as its providing when hosting account was created, owner changed or account deleted from the server.<script type="text/javascript">// <![CDATA[
     google_ad_client = "ca-pub-1685490665026631"; /* images */ google_ad_slot = "1433358698"; google_ad_width = 300; google_ad_height = 250;
// ]]&gt;</script><br />
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[// ]]&gt;</script><br />
<script type="text/javascript">// <![CDATA[
          var _gaq = _gaq || [];   _gaq.push(['_setAccount', 'UA-27772211-1']);   _gaq.push(['_trackPageview']);   (function() {     var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;     ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';     var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);   })();
// ]]&gt;</script>For example we are checking logs for the domain test123.com and as per the following logs the hosting account for domain test123.com is created by using the root owner on dated <strong>Wed Jan 11 08:19:40 2012 </strong>and onwership is under root</p>
<p><strong>root@linux7802 [~]# cat /var/cpanel/accounting.log | grep test123.com</strong><br />
<strong>Wed Jan 11 08:19:40 2012:CREATE:root:root:test123.com:115.124.103.126:admin111</strong><br />
<script type="text/javascript">// <![CDATA[
     google_ad_client = "ca-pub-1685490665026631"; /* images */ google_ad_slot = "1433358698"; google_ad_width = 300; google_ad_height = 250;
// ]]&gt;</script><br />
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[// ]]&gt;</script><br />
<script type="text/javascript">// <![CDATA[
          var _gaq = _gaq || [];   _gaq.push(['_setAccount', 'UA-27772211-1']);   _gaq.push(['_trackPageview']);   (function() {     var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;     ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';     var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);   })();
// ]]&gt;</script>Now we have changed the ownership for the domain test123.com hosting account to linux780 reseller ownership therefore check the following logs</p>
<p><strong>root@linux7802 [~]# cat /var/cpanel/accounting.log | grep test123.com </strong><br />
<strong>Wed Jan 11 08:22:51 2012:CHANGEOWNER:root:root:test123.com:admin111:root:linux780</strong><br />
<!-- Place this tag where you want the +1 button to render --><br />
<g:plusone annotation="inline"></g:plusone></p>
<p><!-- Place this render call where appropriate --><br />
<script type="text/javascript">
  (function() {
    var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
    po.src = 'https://apis.google.com/js/plusone.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
  })();
</script>Now we have terminated the hosting account for the domain test123.com by using the root user and its also recorded in the accounting.log</p>
<p><strong>root@linux7802 [~]# cat /var/cpanel/accounting.log | grep test123.com</strong><br />
<strong>Wed Jan 11 08:25:14 2012:REMOVE:root:root:test123.com:admin111</strong></p>
<p>So we can similarly check the logs for all the domains when they have created/modified or removed from the server and its always to better to maintain the accounting.log for future reference.</p>
<p><strong><br />
</strong></p>
<p>&copy;2012 <a href="http://www.theperfectarts.com">Linux Servers cPanel webhosting blog</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.theperfectarts.com/2012/01/cpanel-log-to-check-when-hosting-created-and-deleted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vzmigrate command for VPS migration</title>
		<link>http://www.theperfectarts.com/2012/01/vzmigrate-command-for-vps-migration/</link>
		<comments>http://www.theperfectarts.com/2012/01/vzmigrate-command-for-vps-migration/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 14:40:56 +0000</pubDate>
		<dc:creator>Gunjan</dc:creator>
				<category><![CDATA[Linux Administrator Interview Questions]]></category>
		<category><![CDATA[VPS]]></category>
		<category><![CDATA[command to migrate VPS]]></category>
		<category><![CDATA[migrate running VPS]]></category>
		<category><![CDATA[migrate VPS from one node to another]]></category>
		<category><![CDATA[transfer all the VPS from one node to another node]]></category>
		<category><![CDATA[transfer VPS from one node to another node]]></category>
		<category><![CDATA[vzmigrate command]]></category>

		<guid isPermaLink="false">http://www.theperfectarts.com/?p=1857</guid>
		<description><![CDATA[The vzmigrate command is used to migrate the one VPS from node to the new or another node. For example, we want to migrate the VPS which is currently having id 110 on new node and its ip is 192.168.0.1 server@linux[~]# vzmigrate 192.168.0.1  110 or server@linux[~]# vzmigrate -r no 192.168.0.1 110 Some time node on which,we are trying [...]]]></description>
			<content:encoded><![CDATA[<p>The vzmigrate command is used to migrate the one VPS from node to the new or another node.<script type="text/javascript">// <![CDATA[
     google_ad_client = "ca-pub-1685490665026631"; /* images */ google_ad_slot = "1433358698"; google_ad_width = 300; google_ad_height = 250;
// ]]&gt;</script><br />
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[</p>
<p>// ]]&gt;</script><br />
<script type="text/javascript">// <![CDATA[
          var _gaq = _gaq || [];   _gaq.push(['_setAccount', 'UA-27772211-1']);   _gaq.push(['_trackPageview']);   (function() {     var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;     ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';     var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);   })();
// ]]&gt;</script><br />
For example, we want to migrate the VPS which is currently having id 110 on new node and its ip is <strong>192.168.0.1</strong></p>
<p><strong>server@linux[~]# vzmigrate 192.168.0.1  110</strong></p>
<p><strong>or</strong></p>
<p><strong>server@linux[~]# vzmigrate -r no 192.168.0.1 110</strong></p>
<p>Some time node on which,we are trying to migrate the VPS we are receiving the following error message</p>
<p><strong>110 already exists on the destination node.</strong></p>
<p>To resolve the above error we can assign new id to the VPS</p>
<p><strong>server@linux[~]#vzmigrate -r no 192.168.0.1 110:120</strong><br />
<script type="text/javascript">// <![CDATA[
     google_ad_client = "ca-pub-1685490665026631"; /* images */ google_ad_slot = "1433358698"; google_ad_width = 300; google_ad_height = 250;
// ]]&gt;</script><br />
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[</p>
<p>// ]]&gt;</script><br />
<script type="text/javascript">// <![CDATA[
          var _gaq = _gaq || [];   _gaq.push(['_setAccount', 'UA-27772211-1']);   _gaq.push(['_trackPageview']);   (function() {     var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;     ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';     var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);   })();
// ]]&gt;</script><br />
The new id on the new node will be 120 for VPS</p>
<p>We can also do online migration of VPS from one to another node.</p>
<pre><strong>server@linux[~]#vzmigrate --online 192.168.0.1 110</strong></pre>
<pre><strong>or</strong></pre>
<pre><strong>server@linux[~]#vzmigrate --online 192.168.1.130 110:120</strong></pre>
<p>If you want to migrate all the running VPS from one node to another node then refer to following command</p>
<pre><strong>for CT in $(vzlist -H -o veid);</strong></pre>
<pre><strong>do vzmigrate --remove-area no --keep-dst $1 $CT; done</strong></pre>
<pre></pre>
<p>&nbsp;</p>
<p>&copy;2012 <a href="http://www.theperfectarts.com">Linux Servers cPanel webhosting blog</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.theperfectarts.com/2012/01/vzmigrate-command-for-vps-migration/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>cPanel file manager giving 404 not found error</title>
		<link>http://www.theperfectarts.com/2012/01/cpanel-file-manager-giving-404-not-found-error/</link>
		<comments>http://www.theperfectarts.com/2012/01/cpanel-file-manager-giving-404-not-found-error/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 16:28:00 +0000</pubDate>
		<dc:creator>Gunjan</dc:creator>
				<category><![CDATA[cPanel + cPanel scripts]]></category>
		<category><![CDATA[Linux Administrator Interview Questions]]></category>
		<category><![CDATA[VPS]]></category>
		<category><![CDATA[404 error message in file manager]]></category>
		<category><![CDATA[cpanel 404 error message]]></category>
		<category><![CDATA[cPanel file manager giving 404]]></category>
		<category><![CDATA[resolve 404 error message]]></category>

		<guid isPermaLink="false">http://www.theperfectarts.com/?p=1852</guid>
		<description><![CDATA[While browsing the file manager from the cPanel the 404 not found error message is occur. Not Found The server was not able to find the document (./frontend/x3/index.html) you requested. Please check the url and try again. You might also want to report this error to your web hosting provider. whostmgrd/11.25 As per above error [...]]]></description>
			<content:encoded><![CDATA[<p>While browsing the file manager from the cPanel the 404 not found error message is occur.<br />
<script type="text/javascript">// <![CDATA[
    google_ad_client = "ca-pub-1685490665026631"; /* images */ google_ad_slot = "1433358698"; google_ad_width = 300; google_ad_height = 250;
// ]]&gt;</script><br />
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[</p>
<p>// ]]&gt;</script><br />
<script type="text/javascript">// <![CDATA[
         var _gaq = _gaq || [];   _gaq.push(['_setAccount', 'UA-27772211-1']);   _gaq.push(['_trackPageview']);   (function() {     var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;     ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';     var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);   })();
// ]]&gt;</script></p>
<blockquote><p><strong>Not Found</strong></p>
<p>The server was not able to find the document (./frontend/x3/index.html) you requested.<br />
Please check the url and try again. You might also want to report this<br />
error to your web hosting provider.</p>
<p>whostmgrd/11.25</p></blockquote>
<p>As per above error message x3 theme is causing the problem therefore simply move the x3 theme and resinstall it by running the upcp, you can rename the theme under which you are facing the problem.<br />
<script type="text/javascript">// <![CDATA[
    google_ad_client = "ca-pub-1685490665026631"; /* images */ google_ad_slot = "1433358698"; google_ad_width = 300; google_ad_height = 250;
// ]]&gt;</script><br />
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[</p>
<p>// ]]&gt;</script><br />
<script type="text/javascript">// <![CDATA[
         var _gaq = _gaq || [];   _gaq.push(['_setAccount', 'UA-27772211-1']);   _gaq.push(['_trackPageview']);   (function() {     var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;     ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';     var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);   })();
// ]]&gt;</script><br />
<strong>linux@server[~]#cd /usr/local/cpanel/base/frontend</strong></p>
<p><strong>linux@server[~]#mv -v x3 x3-corrupt</strong></p>
<p><strong>linux@server[~]#/scripts/upcp &#8211;force</strong></p>
<p>Now browse the file manager, it will work properly.</p>
<p>&copy;2012 <a href="http://www.theperfectarts.com">Linux Servers cPanel webhosting blog</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.theperfectarts.com/2012/01/cpanel-file-manager-giving-404-not-found-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to block referrer from single domain and multiple domains</title>
		<link>http://www.theperfectarts.com/2012/01/how-to-block-referrer-from-single-domain-and-multiple-domains/</link>
		<comments>http://www.theperfectarts.com/2012/01/how-to-block-referrer-from-single-domain-and-multiple-domains/#comments</comments>
		<pubDate>Sun, 08 Jan 2012 00:59:46 +0000</pubDate>
		<dc:creator>Gunjan</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux Administrator Interview Questions]]></category>
		<category><![CDATA[Server Security]]></category>
		<category><![CDATA[block referrer]]></category>
		<category><![CDATA[block referrer from .htaccess file]]></category>
		<category><![CDATA[block referrer from multiple domain]]></category>
		<category><![CDATA[block referrer from single domain]]></category>
		<category><![CDATA[how to block referrer]]></category>
		<category><![CDATA[steps to block referrer]]></category>

		<guid isPermaLink="false">http://www.theperfectarts.com/?p=1849</guid>
		<description><![CDATA[Use the following rewrite rule to block the referrer from single domain/web site. RewriteEngine on # Options +FollowSymlinks RewriteCond %{HTTP_REFERER} test\.com [NC] RewriteRule .* &#8211; [F] Similarly you can block the referrer from the multiple sites by using the following rewrite rule in the .htaccess file. RewriteEngine on # Options +FollowSymlinks RewriteCond %{HTTP_REFERER} test\.com [NC,OR] RewriteCond [...]]]></description>
			<content:encoded><![CDATA[<p>Use the following rewrite rule to block the referrer from single domain/web site.<br />
<script type="text/javascript">// <![CDATA[
   google_ad_client = "ca-pub-1685490665026631"; /* images */ google_ad_slot = "1433358698"; google_ad_width = 300; google_ad_height = 250;
// ]]&gt;</script><br />
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[</p>
<p>// ]]&gt;</script><br />
<script type="text/javascript">// <![CDATA[
        var _gaq = _gaq || [];   _gaq.push(['_setAccount', 'UA-27772211-1']);   _gaq.push(['_trackPageview']);   (function() {     var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;     ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';     var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);   })();
// ]]&gt;</script></p>
<blockquote><p><strong>RewriteEngine on</strong><br />
<strong># Options +FollowSymlinks</strong><br />
<strong>RewriteCond %{HTTP_REFERER} test\.com [NC]</strong><br />
<strong>RewriteRule .* &#8211; [F]</strong></p></blockquote>
<p>Similarly you can block the referrer from the multiple sites by using the following rewrite rule in the .htaccess file.<br />
<script type="text/javascript">// <![CDATA[
   google_ad_client = "ca-pub-1685490665026631"; /* images */ google_ad_slot = "1433358698"; google_ad_width = 300; google_ad_height = 250;
// ]]&gt;</script><br />
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[</p>
<p>// ]]&gt;</script><br />
<script type="text/javascript">// <![CDATA[
        var _gaq = _gaq || [];   _gaq.push(['_setAccount', 'UA-27772211-1']);   _gaq.push(['_trackPageview']);   (function() {     var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;     ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';     var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);   })();
// ]]&gt;</script></p>
<blockquote><p><strong>RewriteEngine on</strong><br />
<strong># Options +FollowSymlinks</strong><br />
<strong>RewriteCond %{HTTP_REFERER} test\.com [NC,OR]</strong><br />
<strong>RewriteCond %{HTTP_REFERER} test123\.com</strong><br />
<strong>RewriteRule .* &#8211; [F]</strong></p></blockquote>
<p>&copy;2012 <a href="http://www.theperfectarts.com">Linux Servers cPanel webhosting blog</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.theperfectarts.com/2012/01/how-to-block-referrer-from-single-domain-and-multiple-domains/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysql tuner to tune mysql service</title>
		<link>http://www.theperfectarts.com/2011/12/mysql-tuner-to-tune-mysql-service/</link>
		<comments>http://www.theperfectarts.com/2011/12/mysql-tuner-to-tune-mysql-service/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 05:42:46 +0000</pubDate>
		<dc:creator>Gunjan</dc:creator>
				<category><![CDATA[Basic Linux]]></category>
		<category><![CDATA[Common errors]]></category>
		<category><![CDATA[Dedicated Server Issue]]></category>
		<category><![CDATA[Linux Administrator Interview Questions]]></category>
		<category><![CDATA[VPS]]></category>

		<guid isPermaLink="false">http://www.theperfectarts.com/?p=1783</guid>
		<description><![CDATA[Install the mysql tuner to tune the mysql service to avoid any memory usage due to incorrect settings in the /etc/my.cnf file. Login in to the server as root user and download the mysqltuner.pl file root@linux7802 [~]# cd /usr/local/src/ root@linux7802 [/usr/local/src]# wget -O mysqltuner.pl mysqltuner.pl root@linux7802 [/usr/local/src]# perl mysqltuner.pl Above command will give you the [...]]]></description>
			<content:encoded><![CDATA[<p>Install the mysql tuner to tune the mysql service to avoid any memory usage due to incorrect settings in the /etc/my.cnf file.</p>
<p>Login in to the server as root user and download the mysqltuner.pl file</p>
<p><strong>root@linux7802 [~]# cd /usr/local/src/</strong></p>
<p><strong>root@linux7802 [/usr/local/src]# wget -O mysqltuner.pl mysqltuner.pl</strong></p>
<p><strong>root@linux7802 [/usr/local/src]# perl mysqltuner.pl</strong></p>
<p>Above command will give you the statistics as well as recommendations to improve the server perfomance</p>
<p>Refer to the following image to example of statistics</p>
<p><a href="http://www.theperfectarts.com/wp-content/uploads/2011/12/mysqltune.png"><img class="size-medium wp-image-1784 alignleft" title="mysqltune" src="http://www.theperfectarts.com/wp-content/uploads/2011/12/mysqltune-300x153.png" alt="statistics" width="300" height="153" /></a></p>
<p><script type="text/javascript">// <![CDATA[
 google_ad_client = "ca-pub-1685490665026631"; /* images */ google_ad_slot = "1433358698"; google_ad_width = 300; google_ad_height = 250;
// ]]&gt;</script><br />
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[</p>
<p>// ]]&gt;</script><br />
<script type="text/javascript">// <![CDATA[
      var _gaq = _gaq || [];   _gaq.push(['_setAccount', 'UA-27772211-1']);   _gaq.push(['_trackPageview']);   (function() {     var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;     ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';     var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);   })();
// ]]&gt;</script></p>
<p>For recommendations example refer to the following image and made the necessary changes in the /etc/my.cnf file and retest the script to check, if issue resolved or not&#8230;&#8230;</p>
<div id="attachment_1789" class="wp-caption alignleft" style="width: 310px"><a href="http://www.theperfectarts.com/wp-content/uploads/2011/12/recommendations1.png"><img class="size-medium wp-image-1789" title="recommendations" src="http://www.theperfectarts.com/wp-content/uploads/2011/12/recommendations1-300x153.png" alt="recommendations" width="300" height="153" /></a><p class="wp-caption-text">Its an example for recommendations</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Note : Most of the time it recommend to optimize the mysql at that time use the following command but make sure that you have talen backup for the /var/lib/mysql directory to avoid any problem.</p>
<p><strong>mysqlcheck &#8211;optimize -A</strong></p>
<p>&nbsp;</p>
<p>&copy;2012 <a href="http://www.theperfectarts.com">Linux Servers cPanel webhosting blog</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.theperfectarts.com/2011/12/mysql-tuner-to-tune-mysql-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install and upgrade the rsync</title>
		<link>http://www.theperfectarts.com/2011/12/install-and-upgrade-the-rsync/</link>
		<comments>http://www.theperfectarts.com/2011/12/install-and-upgrade-the-rsync/#comments</comments>
		<pubDate>Mon, 26 Dec 2011 05:45:32 +0000</pubDate>
		<dc:creator>Gunjan</dc:creator>
				<category><![CDATA[Basic Linux]]></category>
		<category><![CDATA[Dedicated Server Issue]]></category>
		<category><![CDATA[Install server side software / script]]></category>
		<category><![CDATA[Linux Administrator Interview Questions]]></category>
		<category><![CDATA[check rsync version]]></category>
		<category><![CDATA[how to install rsync]]></category>
		<category><![CDATA[how to upgrade rsync]]></category>
		<category><![CDATA[increase downloading speed in rsync]]></category>
		<category><![CDATA[Install rsync]]></category>
		<category><![CDATA[steps to upgrade rsync]]></category>
		<category><![CDATA[upgrade rsync]]></category>

		<guid isPermaLink="false">http://www.theperfectarts.com/?p=1778</guid>
		<description><![CDATA[To increase the download speed via rsync its always better to use the latest rsync version.Refer to the following steps to install and upgrade the rsync Loghin in to the server as a root user root@linux7802 [~]# cd /usr/src/ Now download the latest rsync version source from the url https://rsync.samba.org/ftp/rsync/src/ root@linux7802 [/usr/src]#wget https://rsync.samba.org/ftp/rsync/src/rsync-3.0.9.tar.gz root@linux7802 [/usr/src]#tar [...]]]></description>
			<content:encoded><![CDATA[<p>To increase the download speed via rsync its always better to use the latest rsync version.Refer to the following steps to install and upgrade the rsync</p>
<p>Loghin in to the server as a root user</p>
<p><strong>root@linux7802 [~]# cd /usr/src/</strong></p>
<p>Now download the latest rsync version source from the url https://rsync.samba.org/ftp/rsync/src/</p>
<p><strong>root@linux7802 [/usr/src]#wget https://rsync.samba.org/ftp/rsync/src/rsync-3.0.9.tar.gz</strong></p>
<p><strong>root@linux7802 [/usr/src]#tar -xzvf  rsync-3.0.9.tar.gz</strong><br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-1685490665026631";
/* Big images */
google_ad_slot = "0185136902";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><script type="text/javascript">// <![CDATA[
    var _gaq = _gaq || [];   _gaq.push(['_setAccount', 'UA-27772211-1']);   _gaq.push(['_trackPageview']);   (function() {     var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;     ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';     var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);   })();
// ]]&gt;</script><br />
<strong>root@linux7802 [/usr/src]#cd rsync-3.0.9/</strong></p>
<p><strong>root@linux7802 [/usr/src/<strong>rsync-3.0.9</strong>]# ./configure</strong></p>
<p><strong>root@linux7802 [/usr/src/<strong>rsync-3.0.9</strong>]# make</strong></p>
<p><strong>root@linux7802 [/usr/src/<strong>rsync-3.0.9</strong>]# make test</strong></p>
<p><strong>root@linux7802 [/usr/src/<strong>rsync-3.0.9</strong>]# make install</strong><br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-1685490665026631";
/* Links unit */
google_ad_slot = "1169328984";
google_ad_width = 160;
google_ad_height = 90;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<strong>root@linux7802 [/usr/src/<strong>rsync-3.0.9</strong>]# rm -f /usr/bin/rsync</strong></p>
<p><strong>root@linux7802 [/usr/src/<strong>rsync-3.0.9</strong>]# ln -s /usr/local/bin/rsync /usr/bin/rsync</strong></p>
<p>Now check the new rsync version</p>
<p><strong>root@linux7802 [/usr/src/<strong>rsync-3.0.9</strong>]# rsync  &#8211;version</strong><br />
<strong>rsync  version 3.0.9</strong>  protocol version 30</p>
<p>Its 3.0.9 now <img src='http://www.theperfectarts.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>&copy;2012 <a href="http://www.theperfectarts.com">Linux Servers cPanel webhosting blog</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.theperfectarts.com/2011/12/install-and-upgrade-the-rsync/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable mod gzip  and mod deflate module</title>
		<link>http://www.theperfectarts.com/2011/12/enable-mod-gzip-and-mod-deflate-module/</link>
		<comments>http://www.theperfectarts.com/2011/12/enable-mod-gzip-and-mod-deflate-module/#comments</comments>
		<pubDate>Sat, 24 Dec 2011 05:51:34 +0000</pubDate>
		<dc:creator>Gunjan</dc:creator>
				<category><![CDATA[Common errors]]></category>
		<category><![CDATA[Install server side software / script]]></category>
		<category><![CDATA[Linux Administrator Interview Questions]]></category>

		<guid isPermaLink="false">http://www.theperfectarts.com/?p=1754</guid>
		<description><![CDATA[The server load is normal but web pages are loading very slow due to heavy web size therefore at that time, we can enable the web page compression for the hosting account. To enable the compress make sure that mod_deflate module. To install the mod_deflate module refer the following setps. Login in to the server [...]]]></description>
			<content:encoded><![CDATA[<p>The server load is normal but web pages are loading very slow due to heavy web size therefore at that time, we can enable the web page compression for the hosting account. To enable the compress make sure that mod_deflate module.</p>
<p>To install the mod_deflate module refer the following setps.</p>
<p>Login in to the server as root user and run /scripts/easyapache script to recompile the Apache web server.</p>
<p><strong>root@linux7802 [~]# /scripts/easyapache</strong></p>
<p>Select the <strong>&#8220;Deflate&#8221;</strong> option available under the<strong> &#8220;Apache Built-in Modules&#8221;</strong> as soon as Apache recompiled login in to domain hosting account under which you are facing the problem.</p>
<p>For example the linux7802.com domain having the slow web page loading issue therefore we can create the new .htaccess file or edit the existing .htaccess file and add the following code.</p>
<blockquote><p><strong>#compress all text &amp; html:</strong><br />
<strong>AddOutputFilterByType DEFLATE text/html text/plain text/xml</strong><br />
<strong># Or, compress certain file types by extension:</strong><br />
<strong>&lt;Files *.html&gt;</strong><br />
<strong>SetOutputFilter DEFLATE</strong><br />
<strong>&lt;/Files&gt;</strong></p></blockquote>
<p><script type="text/javascript">// <![CDATA[
    google_ad_client = "ca-pub-1685490665026631"; /* images */ google_ad_slot = "1433358698"; google_ad_width = 300; google_ad_height = 250;
// ]]&gt;</script><br />
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[</p>
<p>// ]]&gt;</script></p>
<p><script type="text/javascript">// <![CDATA[
   var _gaq = _gaq || [];   _gaq.push(['_setAccount', 'UA-27772211-1']);   _gaq.push(['_trackPageview']);   (function() {     var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;     ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';     var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);   })();
// ]]&gt;</script><br />
Check the following file</p>
<p><strong>root@linux7802 [/home/linux780/public_html]# cat .htaccess</strong><br />
<strong> #compress all text &amp; html:</strong><br />
<strong> AddOutputFilterByType DEFLATE text/html text/plain text/xml</strong><br />
<strong> # Or, compress certain file types by extension:</strong><br />
<strong> &lt;Files *.html&gt;</strong><br />
<strong> SetOutputFilter DEFLATE</strong><br />
<strong> &lt;/Files&gt;</strong></p>
<p>We can also use the following code in the .htaccess file</p>
<blockquote><p><strong>#compress all text &amp; html:</strong><br />
<strong>AddOutputFilterByType DEFLATE text/html text/plain text/xml</strong><br />
<strong># Or, compress certain file types by extension:</strong><br />
<strong>&lt;FilesMatch &#8220;\\.(js|css|html|htm|php|xml)$&#8221;&gt;</strong><br />
<strong>SetOutputFilter DEFLATE</strong><br />
<strong>&lt;/Files&gt;</strong></p></blockquote>
<p>After adding the above check the web page compression by using the following URL</p>
<p><strong>http://www.gidnetwork.com/tools/gzip-test.php</strong></p>
<p>&copy;2012 <a href="http://www.theperfectarts.com">Linux Servers cPanel webhosting blog</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.theperfectarts.com/2011/12/enable-mod-gzip-and-mod-deflate-module/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Update the webalizer logs manually</title>
		<link>http://www.theperfectarts.com/2011/12/update-the-webalizer-logs-manually/</link>
		<comments>http://www.theperfectarts.com/2011/12/update-the-webalizer-logs-manually/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 10:22:19 +0000</pubDate>
		<dc:creator>Gunjan</dc:creator>
				<category><![CDATA[Common errors]]></category>
		<category><![CDATA[cPanel + cPanel scripts]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Linux Administrator Interview Questions]]></category>
		<category><![CDATA[cpanel webalizer logs update]]></category>
		<category><![CDATA[recover webalizer logs]]></category>
		<category><![CDATA[resolve probem for webalizer on cPanel server]]></category>
		<category><![CDATA[resolve webalizer issue]]></category>
		<category><![CDATA[run webalizer logs]]></category>
		<category><![CDATA[Update the webalizer]]></category>
		<category><![CDATA[update the webalizer logs for the single domain]]></category>
		<category><![CDATA[webalizer manully update]]></category>

		<guid isPermaLink="false">http://www.theperfectarts.com/?p=1744</guid>
		<description><![CDATA[To update the webalizer for the single domain refer the following steps, for your kind information if domlogs are rotated on the server then it could be possible that you will miss the existing stats therefore run the command after taking all the essential files backups. root@server [~]#/usr/local/cpanel/3rdparty/bin/webalizer /usr/local/apache/domlogs/DomainName -n DomainName For example we are [...]]]></description>
			<content:encoded><![CDATA[<p>To update the webalizer for the single domain refer the following steps, for your kind information if domlogs are rotated on the server then it could be possible that you will miss the existing stats therefore run the command after taking all the essential files backups.</p>
<p><strong>root@server [~]#/usr/local/cpanel/3rdparty/bin/webalizer /usr/local/apache/domlogs/DomainName -n DomainName</strong></p>
<p>For example we are runnning the webalizer for the theperfectarts.com domain<br />
<script type="text/javascript"><!--
google_ad_client = "ca-pub-1685490665026631";
/* Big images */
google_ad_slot = "0185136902";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><script type="text/javascript">// <![CDATA[
     var _gaq = _gaq || [];   _gaq.push(['_setAccount', 'UA-27772211-1']);   _gaq.push(['_trackPageview']);   (function() {     var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;     ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';     var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);   })();
// ]]&gt;</script></p>
<p><strong>root@server [~]#/usr/local/cpanel/3rdparty/bin/webalizer /usr/local/apache/domlogs/theperfectarts.com -n theperfectarts.com</strong></p>
<p>Once above command run successfuly run the following command</p>
<p><strong>root@server [~]#/usr/local/cpanel/startup</strong></p>
<p>&copy;2012 <a href="http://www.theperfectarts.com">Linux Servers cPanel webhosting blog</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.theperfectarts.com/2011/12/update-the-webalizer-logs-manually/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Set alternative SMTP port in Plesk Linux server</title>
		<link>http://www.theperfectarts.com/2011/12/set-alternative-smtp-port-in-plesk-linux-server/</link>
		<comments>http://www.theperfectarts.com/2011/12/set-alternative-smtp-port-in-plesk-linux-server/#comments</comments>
		<pubDate>Sat, 10 Dec 2011 10:19:00 +0000</pubDate>
		<dc:creator>Gunjan</dc:creator>
				<category><![CDATA[Linux Administrator Interview Questions]]></category>
		<category><![CDATA[Plesk]]></category>
		<category><![CDATA[Server Security]]></category>
		<category><![CDATA[Alternative port for SMTP]]></category>
		<category><![CDATA[block smtp port in plesk server]]></category>
		<category><![CDATA[change smtp port for qmail]]></category>
		<category><![CDATA[change smtp port on plesk Linux server]]></category>
		<category><![CDATA[configure new smtp port on plesk linux server]]></category>
		<category><![CDATA[default smtp port not working on plesk server]]></category>
		<category><![CDATA[how to set smtp port in plesk linux server]]></category>
		<category><![CDATA[isp blocked smtp 25 port]]></category>
		<category><![CDATA[linux plesk server smtp port]]></category>
		<category><![CDATA[new qmail smtp port]]></category>
		<category><![CDATA[new smtp port configuration with plesk server]]></category>
		<category><![CDATA[open new smtp for ISP end issue with port 25]]></category>
		<category><![CDATA[open new smtp port]]></category>
		<category><![CDATA[plesk linux server with qmail on new smtp port]]></category>
		<category><![CDATA[plesk queue mail on another port]]></category>
		<category><![CDATA[plesk server linux smtp issue]]></category>
		<category><![CDATA[plesk server smtp posrt issue]]></category>
		<category><![CDATA[plesk smtp issue]]></category>
		<category><![CDATA[qmail issue with default port]]></category>
		<category><![CDATA[qmail on new smtp port]]></category>
		<category><![CDATA[set new smtp port for plesk server]]></category>
		<category><![CDATA[set new smtp port on plesk linux server]]></category>
		<category><![CDATA[set smtp port /etcservices file]]></category>
		<category><![CDATA[set smtp qmail port]]></category>
		<category><![CDATA[set smtp service port other then 25]]></category>
		<category><![CDATA[smtp on another port]]></category>
		<category><![CDATA[smtp on new port]]></category>
		<category><![CDATA[smtp port block]]></category>
		<category><![CDATA[smtp port on plesk linux server]]></category>

		<guid isPermaLink="false">http://www.theperfectarts.com/?p=1736</guid>
		<description><![CDATA[Some time local ISP blocked default SMTP port 25 in the local network therefore we have to configure the alternative smtp port for SMTP service, so that SMTP will work on default port 25 as well as other new port. For example we are configuring the SMTP service on port 2626. Refer to the following [...]]]></description>
			<content:encoded><![CDATA[<p>Some time local ISP blocked default SMTP port 25 in the local network therefore we have to configure the alternative smtp port for SMTP service, so that SMTP will work on default port 25 as well as other new port. For example we are configuring the SMTP service on port 2626. Refer to the following steps to configure SMTP service on another port.</p>
<p>Change directory to the /etc/xinetd.d</p>
<p><strong>root@server [~]#cd /etc/xinetd.d</strong></p>
<p>Now copy the current working smtp_psa file to the new file smtp_psa_new</p>
<p><strong>root@server [/etc/xinetd.d]#cp -p smtp_psa smtp_psa_new</strong></p>
<p>open the file smtp_psa_new and change the value in the first line</p>
<p><strong>From</strong><script type="text/javascript"><!--
google_ad_client = "ca-pub-1685490665026631";
/* Big images */
google_ad_slot = "0185136902";
google_ad_width = 336;
google_ad_height = 280;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
<script type="text/javascript">// <![CDATA[
     var _gaq = _gaq || [];   _gaq.push(['_setAccount', 'UA-27772211-1']);   _gaq.push(['_trackPageview']);   (function() {     var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;     ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';     var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);   })();
// ]]&gt;</script><strong>service smtp</strong><br />
<strong>to</strong><br />
<strong>service smtp_psa_new</strong></p>
<p>Save the file  and add the new smpt port in the /etc/services file</p>
<p>For example we want to set new smtp port 2626, you can change the port as per your requirement</p>
<p><strong>smtp_psa_new 2626/tcp mail</strong><br />
<strong>smtp_psa_new 2626/udp mail</strong></p>
<p>Save the file and restart the xinetd service</p>
<p><strong>root@server [/etc/xinetd.d]#/etc/init.d/xinetd restart</strong></p>
<p>Make sure that you have opened new port in the server firewall and then try to telenet the new SMTP port</p>
<p><strong>root@server [/etc/xinetd.d]#telnet localhost 2626</strong></p>
<p>It will show you the SMTP service banner</p>
<p>&copy;2012 <a href="http://www.theperfectarts.com">Linux Servers cPanel webhosting blog</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://www.theperfectarts.com/2011/12/set-alternative-smtp-port-in-plesk-linux-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

