<?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>Nineteen Labs &#187; CentOS/RHEL</title>
	<atom:link href="http://www.nineteenlabs.com/category/centosrhel/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nineteenlabs.com</link>
	<description></description>
	<lastBuildDate>Wed, 16 Dec 2009 14:55:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Copy a directory with all its contents in CentOS</title>
		<link>http://www.nineteenlabs.com/2008/05/15/copy-a-directory-with-all-its-contents-in-centos/</link>
		<comments>http://www.nineteenlabs.com/2008/05/15/copy-a-directory-with-all-its-contents-in-centos/#comments</comments>
		<pubDate>Fri, 16 May 2008 05:41:19 +0000</pubDate>
		<dc:creator>Kate</dc:creator>
				<category><![CDATA[CentOS/RHEL]]></category>

		<guid isPermaLink="false">http://www.nineteenlabs.com/?p=185</guid>
		<description><![CDATA[This command will copy a directory with all its content to another directory,
for example you have a directory named x, you want to copy it to another directory named y
cp -dpr x y 
That&#8217;s it!
                     [...]]]></description>
			<content:encoded><![CDATA[<p>This command will copy a directory with all its content to another directory,<br />
for example you have a directory named x, you want to copy it to another directory named y</p>
<p><code>cp -dpr x y </code></p>
<p>That&#8217;s it!</p>
                        <p><center>&copy; Kate Mag - visit the <a href="http://www.nineteenlabs.com">Nineteen Labs</a> for more great content.</center></p>                  ]]></content:encoded>
			<wfw:commentRss>http://www.nineteenlabs.com/2008/05/15/copy-a-directory-with-all-its-contents-in-centos/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Compressing with GZip and Zip in CentOS</title>
		<link>http://www.nineteenlabs.com/2008/05/15/compressing-with-gzip-and-zip-in-centos/</link>
		<comments>http://www.nineteenlabs.com/2008/05/15/compressing-with-gzip-and-zip-in-centos/#comments</comments>
		<pubDate>Thu, 15 May 2008 09:16:49 +0000</pubDate>
		<dc:creator>Kate</dc:creator>
				<category><![CDATA[CentOS/RHEL]]></category>

		<guid isPermaLink="false">http://www.nineteenlabs.com/?p=184</guid>
		<description><![CDATA[Gzip
Type the following command to compress a file at a shell prompt
gzip filename.ext -> The file will be compressed and saved as filename.ext.gz
Type the following command to expand a compressed file
gunzip filename.ext.gz -> The filename.ext.gz is deleted and replaced with filename.ext
Type the following command to compress multiple files at a shell prompt
gzip filename.gz file1 file2 [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Gzip</strong><br />
Type the following command to compress a file at a shell prompt<br />
<code>gzip filename.ext</code> -> The file will be compressed and saved as filename.ext.gz</p>
<p>Type the following command to expand a compressed file<br />
<code>gunzip filename.ext.gz</code> -> The filename.ext.gz is deleted and replaced with filename.ext</p>
<p>Type the following command to compress multiple files at a shell prompt<br />
<code>gzip filename.gz file1 file2 file3</code>  -> will compress file1, file2, file3 and put them in filename.gzip.</p>
<p><strong>Zip</strong><br />
Type the following command to compress a file at a shell prompt<br />
<code>zip -r filename.zip files</code> -> filename represents the file you are creating and files represents the files you want to put in the new file</p>
<p>Type the following command to expand a compressed file<br />
<code>unzip filename.zip</code> </p>
<p>Type the following command to compress multiple files at a shell prompt<br />
<code>zip filename.zip file1 file2 file3 </code> -> will compress file1, file2, file3 and put them in filename.zip</p>
<p>If you add directory to multiple files<br />
<code>zip filename.zip file1 file2 file3 /user/work/school</code> -> will compress file1, file2, file3, the contents of the /user/work/school directory and put them in filename.zip</p>
                        <p><center>&copy; Kate Mag - visit the <a href="http://www.nineteenlabs.com">Nineteen Labs</a> for more great content.</center></p>                  ]]></content:encoded>
			<wfw:commentRss>http://www.nineteenlabs.com/2008/05/15/compressing-with-gzip-and-zip-in-centos/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Change Default Home Directory for User in Centos</title>
		<link>http://www.nineteenlabs.com/2008/05/11/change-default-home-directory-for-a-user-in-centos/</link>
		<comments>http://www.nineteenlabs.com/2008/05/11/change-default-home-directory-for-a-user-in-centos/#comments</comments>
		<pubDate>Sun, 11 May 2008 12:09:29 +0000</pubDate>
		<dc:creator>Kate</dc:creator>
				<category><![CDATA[CentOS/RHEL]]></category>

		<guid isPermaLink="false">http://www.nineteenlabs.com/?p=183</guid>
		<description><![CDATA[Everytime users created, it will keep per line inside /etc/passwd.
The line has the following characteristics:
1. It begins with the username.
2. There is an x for the password field indicating that the system is using shadow passwords.
3. A UID greater than 499 is created. (Under Red Hat Enterprise Linux/CentOS, UIDs and GIDs below 500 are reserved [...]]]></description>
			<content:encoded><![CDATA[<p>Everytime users created, it will keep per line inside /etc/passwd.<br />
The line has the following characteristics:<br />
1. It begins with the username.<br />
2. There is an x for the password field indicating that the system is using shadow passwords.<br />
3. A UID greater than 499 is created. (Under Red Hat Enterprise Linux/CentOS, UIDs and GIDs below 500 are reserved for system use.)<br />
4. A GID greater than 499 is created.<br />
5. The optional GECOS information is left blank.<br />
6. The home directory<br />
7. The default shell is set to /bin/bash.</p>
<p>Open /etc/passwd with VI :<br />
#vi /etc/passwd</p>
<p>Find username that you want to change its default home directory, press i (for insert in VI) then retype a new home directory. DO NOT CHANGE OTHER INFORMATION, just home directory (e.g /home/username/). Then press wq! (for write and quit in VI)</p>
<p>You can set a home directory when you created user by adding -d <home-dir> to useradd <username>, e.g useradd <username> -d <home-dir></p>
                        <p><center>&copy; Kate Mag - visit the <a href="http://www.nineteenlabs.com">Nineteen Labs</a> for more great content.</center></p>                  ]]></content:encoded>
			<wfw:commentRss>http://www.nineteenlabs.com/2008/05/11/change-default-home-directory-for-a-user-in-centos/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to modify cPanel Skin : hide apache, php, mysql, kernel and ip address infos</title>
		<link>http://www.nineteenlabs.com/2007/12/10/how-to-modify-cpanel-skin-hide-apache-php-mysql-kernel-and-ip-address-infos/</link>
		<comments>http://www.nineteenlabs.com/2007/12/10/how-to-modify-cpanel-skin-hide-apache-php-mysql-kernel-and-ip-address-infos/#comments</comments>
		<pubDate>Tue, 11 Dec 2007 03:24:37 +0000</pubDate>
		<dc:creator>Kate</dc:creator>
				<category><![CDATA[CPanel]]></category>
		<category><![CDATA[CentOS/RHEL]]></category>

		<guid isPermaLink="false">http://www.nineteenlabs.com/2007/12/10/how-to-modify-cpanel-skin-hide-apache-php-mysql-kernel-and-ip-address-infos/</guid>
		<description><![CDATA[I want this information, such as apache, php, mysql, kernel and ip address not shown on cPanel. I thought I modified skin file, so i downloaded the file from WHM. The file has size 10mb in gunzip format, but when it was extracted to original file, the size had became 458mb. I tracked code for [...]]]></description>
			<content:encoded><![CDATA[<p>I want this information, such as apache, php, mysql, kernel and ip address not shown on cPanel. I thought I modified skin file, so i downloaded the file from WHM. The file has size 10mb in gunzip format, but when it was extracted to original file, the size had became 458mb. I tracked code for apache, php, mysql, kernel and ip address on stat.html and deleted them. I stumbled to big problem, when i should compressed all files into one gunzip file. I edited and compressed on Windows, which is huge problem. The gunzip file was very big, it was 100mb.<br />
Why did i compress skin files into a gunzip file? because WHM/cPanel needs the skin in tarball format. </p>
<p>I was googling and found a presentation file from one of cPanel Staff. He said that <strong>cPanel 11</strong> has Branding feature where you can modify skin on cPanel enviroment. I thought this is great, I don&#8217;t bother to compress and upload a modified file.</p>
<p><strong>Here is a way how to modify cPanel Skin</strong><br />
1. Log into cPanel Main (Reseller) Account. Make sure you have a branding editor. Please use CPanel Main Account, not WHM, because i had tried and it will bring you cPanel enviroment when you choose a branding editor in WHM (Themes on Left Panel). Editing on cPanel Main Account will effect entire domains<br />
2. You&#8217;ll see installed styles. You can choose which style you want, just checked enabled/disabled.<br />
3. Choose one style to Apply to My Account (this will apply to your account only), Apply to All Accounts  (this will apply to entire account on your server), Set as Default for New Accounts (this will apply to every new account created on the server)<br />
6. Choose Edit this Style<br />
7. Choose Edit HTML Pages > Choose Entry Page, index.html > Click Edit<br />
8. Find line no 160 and delete apache, php, mysql, kernel and ip infos.<br />
9. Click Save. You&#8217;re Done</p>
<p>You can do this on other styles too</p>
                        <p><center>&copy; Kate Mag - visit the <a href="http://www.nineteenlabs.com">Nineteen Labs</a> for more great content.</center></p>                  ]]></content:encoded>
			<wfw:commentRss>http://www.nineteenlabs.com/2007/12/10/how-to-modify-cpanel-skin-hide-apache-php-mysql-kernel-and-ip-address-infos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to transfer Cpanel accounts from one server to another (Cpanel)?</title>
		<link>http://www.nineteenlabs.com/2007/12/09/how-to-transfer-cpanel-accounts-from-one-server-to-another-cpanel/</link>
		<comments>http://www.nineteenlabs.com/2007/12/09/how-to-transfer-cpanel-accounts-from-one-server-to-another-cpanel/#comments</comments>
		<pubDate>Mon, 10 Dec 2007 03:13:21 +0000</pubDate>
		<dc:creator>Kate</dc:creator>
				<category><![CDATA[CPanel]]></category>
		<category><![CDATA[CentOS/RHEL]]></category>

		<guid isPermaLink="false">http://www.nineteenlabs.com/2007/12/09/how-to-transfer-cpanel-accounts-from-one-server-to-another-cpanel/</guid>
		<description><![CDATA[UPDATE
Note :
The server we are transferring the accounts from : OLD SERVER
The server to are transferring the accounts to : NEW SERVER
PROCESS ON NEW SERVER
1. Log into WHM. If your server is new, create a main account. The main account also setup as nameservers. Or if your server isn&#8217;t new, you can create or use [...]]]></description>
			<content:encoded><![CDATA[<p><strong>UPDATE</strong></p>
<p>Note :<br />
The server we are transferring the accounts from : <strong>OLD SERVER</strong><br />
The server to are transferring the accounts to : <strong>NEW SERVER</strong></p>
<p><strong>PROCESS ON NEW SERVER</strong><br />
1. Log into WHM. If your server is new, create a main account. The main account also setup as nameservers. Or if your server isn&#8217;t new, you can create or use another account on your NEW SERVER. The account will be used to accept backup file from OLD SERVER. <strong>Remember : address (a domain name or an ip address), NEW SERVER&#8217;s account and password will be used as a container for OLD SERVER&#8217;s backup file. </strong></p>
<p><strong>PROCESS ON OLD SERVER</strong> :<br />
1. Log into cPanel account. If you don&#8217;t know your clients login (if you move entire server with some accounts belongs to clients), use a client username and your master password. Choose Admin Layer<br />
2. Choose <strong>Backup</strong> (Do not choose Backup Wizard). Then choose <strong>Genereate/Download A Full Backup</strong><br />
3. Select the backup destination to be <strong>Remote FTP Server</strong>.<br />
4. Enter you email address for verification. If you transferred your client, make sure to enter your own email address, not your client.<br />
5. Enter this :<br />
    <strong>Remote Server</strong> : NEW SERVER&#8217;s address (you can use a domain name or an ip address)<br />
    <strong>Remote User</strong> : NEW SERVER&#8217;s account (you can use NEW SERVER&#8217;s main account. This was explain in <strong>PROCESS ON NEW SERVER STEP NO. 1</strong>)<br />
    <strong>Remote Password</strong> : NEW SERVER&#8217;s account password<br />
    <strong>PORT</strong> : 21<br />
6. That would be enough. Click <strong>Generate Backup</strong>. This may take some time to backup the files, depending on how large the account is. You should receive an email provided in the above info once it&#8217;s complete.</p>
<p><strong>AFTER YOU GET OLD SERVER&#8217;s Backup File on NEW SERVER</strong><br />
1. Log into SSH on your NEW SERVER<br />
2. type this :<br />
    <code>cd /home/account_name</code><br />
    note : account_name is the name of the account used to backup OLD SERVER&#8217;s account files</p>
<p>    <code>ls</code><br />
    Running the list command will make you see the tar file of the account on the OLD SERVER.<br />
3. Move the tar file to your NEW SERVER&#8217;s /home directory with the following command :<br />
    <code>mv tar_file_name /home</code><br />
4. Log into NEW SERVER&#8217;s WHM and go to <strong>Backup</strong> and choose <strong>Restore a Full Backup/cpmove file</strong>. You should see the OLD SERVER&#8217;s file with old account&#8217;s username under Possible cpmove archives found.<br />
5. <strong>Type in the account name</strong> ( I suggested that you should use same account name with old account) in the text field in WHM (Enter the username for the account you wish to restore)<br />
6. Click <strong>Restore</strong></p>
<p><strong>Additional information</strong> : After transfer completed, check out a package on an account. Make sure you setup the right package used by the account.<br />
<strong>Warning</strong> : Use Steps above one by one, meaning that you should restore an account at once, not multiple files at once. When you reach step no 2 in AFTER YOU GET OLD SERVER&#8217;s Backup File on NEW SERVER, move only one file to /home directory or you can make cpanel confused.</p>
                        <p><center>&copy; Kate Mag - visit the <a href="http://www.nineteenlabs.com">Nineteen Labs</a> for more great content.</center></p>                  ]]></content:encoded>
			<wfw:commentRss>http://www.nineteenlabs.com/2007/12/09/how-to-transfer-cpanel-accounts-from-one-server-to-another-cpanel/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Redirect Subdomain to another ip address or url</title>
		<link>http://www.nineteenlabs.com/2007/11/04/redirect-subdomain-to-another-ip-address-or-url/</link>
		<comments>http://www.nineteenlabs.com/2007/11/04/redirect-subdomain-to-another-ip-address-or-url/#comments</comments>
		<pubDate>Sun, 04 Nov 2007 13:46:18 +0000</pubDate>
		<dc:creator>Kate</dc:creator>
				<category><![CDATA[CPanel]]></category>
		<category><![CDATA[CentOS/RHEL]]></category>
		<category><![CDATA[Plesk]]></category>

		<guid isPermaLink="false">http://www.nineteenlabs.com/2007/11/04/redirect-subdomain-to-another-ip-address-or-url/</guid>
		<description><![CDATA[I have a tumblr site.We can use our own domain instead tumbr address, redirect our domain to tumblr. Not only a domain,we also can redirect a subdomain to tumblr. It&#8217;s easy. Go to our domain control panel. Choose your DNS Zone. We must point the domain&#8217;s A-Record to tumblr&#8217;s ip address. Add a DNS Record [...]]]></description>
			<content:encoded><![CDATA[<p>I have <a href="http://bookmark.nineteenlabs.com">a tumblr site</a>.We can use our own domain instead tumbr address, redirect our domain to <a href="http://www.tumblr.com">tumblr</a>. Not only a domain,we also can redirect a subdomain to tumblr. It&#8217;s easy. Go to our domain control panel. Choose your DNS Zone. We must point the domain&#8217;s A-Record to tumblr&#8217;s ip address. Add a DNS Record : host A ip_address or for example test.com A 72.32.231.8 (domain) or test.test.com A 72.32.231.8 (subdomain).Don&#8217;t use plesk&#8217; or cpanel&#8217;s subdomain services to create an A-record, ifwe use this, plesk or cpanel actually create a subdomain with a directory and an ftp for the subdomain. We don&#8217;t need this.</p>
<p>Log in to tumblr, open Settings inside Account drop down menu. Choose &#8216;use a custom domain name&#8217; and type a domain name or a subdomain name. Save our new settings. We may need to wait up to 72 hours or less for the change to take effect.</p>
                        <p><center>&copy; Kate Mag - visit the <a href="http://www.nineteenlabs.com">Nineteen Labs</a> for more great content.</center></p>                  ]]></content:encoded>
			<wfw:commentRss>http://www.nineteenlabs.com/2007/11/04/redirect-subdomain-to-another-ip-address-or-url/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ProFTPD error : getaddrinfo domain_name error: hostname nor servname provided, or not known</title>
		<link>http://www.nineteenlabs.com/2007/09/20/proftpd-error-getaddrinfo-domain_name-error-hostname-nor-servname-provided-or-not-known/</link>
		<comments>http://www.nineteenlabs.com/2007/09/20/proftpd-error-getaddrinfo-domain_name-error-hostname-nor-servname-provided-or-not-known/#comments</comments>
		<pubDate>Thu, 20 Sep 2007 09:32:49 +0000</pubDate>
		<dc:creator>Kate</dc:creator>
				<category><![CDATA[CentOS/RHEL]]></category>

		<guid isPermaLink="false">http://www.nineteenlabs.com/2007/09/20/proftpd-error-getaddrinfo-%e2%80%98wwwhughrorg%e2%80%99-error-hostname-nor-servname-provided-or-not-known/</guid>
		<description><![CDATA[Add below to proftpd.conf :
DefaultAddress domain_ip
The solution hide a warning, getaddrinfo domain_name error: hostname nor servname provided, or not known in ProFTPD.
                        &#169; Kate Mag - visit the Nineteen Labs for more [...]]]></description>
			<content:encoded><![CDATA[<p>Add below to proftpd.conf :<br />
<code>DefaultAddress domain_ip</code></p>
<p>The solution hide a warning, getaddrinfo domain_name error: hostname nor servname provided, or not known in ProFTPD.</p>
                        <p><center>&copy; Kate Mag - visit the <a href="http://www.nineteenlabs.com">Nineteen Labs</a> for more great content.</center></p>                  ]]></content:encoded>
			<wfw:commentRss>http://www.nineteenlabs.com/2007/09/20/proftpd-error-getaddrinfo-domain_name-error-hostname-nor-servname-provided-or-not-known/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Upgrading php and mysql (cPanel using WHM)</title>
		<link>http://www.nineteenlabs.com/2007/09/11/upgrading-php-and-mysql-cpanel-using-whm/</link>
		<comments>http://www.nineteenlabs.com/2007/09/11/upgrading-php-and-mysql-cpanel-using-whm/#comments</comments>
		<pubDate>Tue, 11 Sep 2007 15:01:11 +0000</pubDate>
		<dc:creator>Kate</dc:creator>
				<category><![CDATA[CPanel]]></category>
		<category><![CDATA[CentOS/RHEL]]></category>

		<guid isPermaLink="false">http://www.nineteenlabs.com/2007/09/11/upgrading-php-and-mysql-cpanel-using-whm/</guid>
		<description><![CDATA[Upgrading cPanel is a lot easy than upgrading Plesk, especially if we use WHM (Web Hosting Manager).
1. Log into WHM
2. Go to Apache Update in Software Category
3. Click Load Previous Config, uncheck previous php version and check the new php version. Same with mysql
4. Press Start Build
Note : some components also provided, such as xml-rpc, [...]]]></description>
			<content:encoded><![CDATA[<p>Upgrading cPanel is a lot easy than upgrading Plesk, especially if we use WHM (Web Hosting Manager).</p>
<p>1. Log into WHM<br />
2. Go to Apache Update in Software Category<br />
3. Click Load Previous Config, uncheck previous php version and check the new php version. Same with mysql<br />
4. Press Start Build</p>
<p>Note : some components also provided, such as xml-rpc, not just php and mysql. So read through options available in Apache Update, before Start Build</p>
                        <p><center>&copy; Kate Mag - visit the <a href="http://www.nineteenlabs.com">Nineteen Labs</a> for more great content.</center></p>                  ]]></content:encoded>
			<wfw:commentRss>http://www.nineteenlabs.com/2007/09/11/upgrading-php-and-mysql-cpanel-using-whm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Turn On and Update Plesk Stat</title>
		<link>http://www.nineteenlabs.com/2007/09/10/turn-on-and-update-plesk-stat/</link>
		<comments>http://www.nineteenlabs.com/2007/09/10/turn-on-and-update-plesk-stat/#comments</comments>
		<pubDate>Tue, 11 Sep 2007 04:32:12 +0000</pubDate>
		<dc:creator>Kate</dc:creator>
				<category><![CDATA[CentOS/RHEL]]></category>
		<category><![CDATA[Plesk]]></category>

		<guid isPermaLink="false">http://www.nineteenlabs.com/2007/09/10/turn-on-and-update-plesk-stat/</guid>
		<description><![CDATA[Stat in one of servers is turn off and doesn&#8217;t updating for two days.
Check &#8216;root&#8217; user crontab
crontab -l
output : 7 4 * * * /usr/local/psa/admin/sbin/statistics >/dev/null 2>&#038;1
Check cron logs for records about the statistic utility executions
vi /var/log/cron
Check apache logs size. Make sure no bigger than 2GB.
Check database directories (mysql : /var/lib/mysql) have read/write permissions to [...]]]></description>
			<content:encoded><![CDATA[<p>Stat in one of servers is turn off and doesn&#8217;t updating for two days.</p>
<p>Check &#8216;root&#8217; user crontab<br />
<code>crontab -l</code></p>
<p>output : <code>7 4 * * * /usr/local/psa/admin/sbin/statistics >/dev/null 2>&#038;1</code></p>
<p>Check cron logs for records about the statistic utility executions<br />
<code>vi /var/log/cron</code></p>
<p>Check apache logs size. Make sure no bigger than 2GB.</p>
<p>Check database directories (mysql : <code>/var/lib/mysql</code>) have read/write permissions to &#8216;mysql&#8217; user</p>
<p>If every conditions above fit with your settings, then we must Run :<br />
<code>/usr/local/psa/admin/sbin/statistics (for all sites in one server)</code></p>
<p>or</p>
<p><code>usr/local/psa/admin/sbin/statistics ?calculate-one ?domain-name=domain.com (only for one specific domain)</code></p>
                        <p><center>&copy; Kate Mag - visit the <a href="http://www.nineteenlabs.com">Nineteen Labs</a> for more great content.</center></p>                  ]]></content:encoded>
			<wfw:commentRss>http://www.nineteenlabs.com/2007/09/10/turn-on-and-update-plesk-stat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>4 things about Squid Swap Directories</title>
		<link>http://www.nineteenlabs.com/2007/09/08/4-things-about-squid-swap-directories/</link>
		<comments>http://www.nineteenlabs.com/2007/09/08/4-things-about-squid-swap-directories/#comments</comments>
		<pubDate>Sat, 08 Sep 2007 13:43:03 +0000</pubDate>
		<dc:creator>Kate</dc:creator>
				<category><![CDATA[CentOS/RHEL]]></category>
		<category><![CDATA[Squid]]></category>
		<category><![CDATA[freeBSD]]></category>

		<guid isPermaLink="false">http://www.nineteenlabs.com/2007/09/08/4-things-about-squid-swap-directories/</guid>
		<description><![CDATA[A few things you need to know about Squid Swap Directories
1. Do not erase or delete using linux delete command. It can cause Swap Directories DIRTY.
2. You do not need to erase or delete Squid Swap Directories if you have no_cache deny (an instruction in squid for no-cache proxy) in squid.conf. Squid need that Swap [...]]]></description>
			<content:encoded><![CDATA[<p>A few things you need to know about Squid Swap Directories<br />
1. Do not erase or delete using linux delete command. It can cause Swap Directories DIRTY.<br />
2. You do not need to erase or delete Squid Swap Directories if you have no_cache deny (an instruction in squid for no-cache proxy) in squid.conf. Squid need that Swap Directories<br />
3. Shutdown Squid before recreates Swap Directories.<br />
4. If you recreates Swap Directories, disconnect any request to Squid. It can cause you a problem, in my experience, i can&#8217;t shutdown Squid properly in next event</p>
                        <p><center>&copy; Kate Mag - visit the <a href="http://www.nineteenlabs.com">Nineteen Labs</a> for more great content.</center></p>                  ]]></content:encoded>
			<wfw:commentRss>http://www.nineteenlabs.com/2007/09/08/4-things-about-squid-swap-directories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
