<?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>cPanel Admins &#187; Command Line</title>
	<atom:link href="http://www.cpaneladmins.com/category/command-line/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cpaneladmins.com</link>
	<description>Random Notes for cPanel Admins</description>
	<lastBuildDate>Wed, 08 Sep 2010 10:15:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Manually Rotate Logs with logrotate</title>
		<link>http://www.cpaneladmins.com/2010/09/08/manually-rotate-logs-with-logrotate/</link>
		<comments>http://www.cpaneladmins.com/2010/09/08/manually-rotate-logs-with-logrotate/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 09:21:17 +0000</pubDate>
		<dc:creator>tech</dc:creator>
				<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Logs]]></category>
		<category><![CDATA[log]]></category>
		<category><![CDATA[log rotation]]></category>
		<category><![CDATA[logrotate]]></category>
		<category><![CDATA[manual]]></category>

		<guid isPermaLink="false">http://www.cpaneladmins.com/?p=406</guid>
		<description><![CDATA[The individual configuration files for logrotate are located in /etc/logrotate.d: # cd /etc/logrotate.d/ Then, to manually rotate the logs for exim, simply run the following. # logrotate exim Note: you won&#8217;t see any output, but you will notice that the exim logs in /var/log are now rotated out.]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">The individual configuration files for logrotate are located in /etc/logrotate.d:<br />
<a href="http://www.cpaneladmins.com/wp-content/uploads/2010/09/logrotate.png"><img class="size-medium wp-image-407 aligncenter" title="logrotate" src="http://www.cpaneladmins.com/wp-content/uploads/2010/09/logrotate-300x168.png" alt="" width="300" height="168" /></a></p>
<pre class="brush:bash"># cd /etc/logrotate.d/</pre>
<p style="text-align: center;"><a href="http://www.cpaneladmins.com/wp-content/uploads/2010/09/logrotate2.png"><img class="size-medium wp-image-408 aligncenter" title="logrotate2" src="http://www.cpaneladmins.com/wp-content/uploads/2010/09/logrotate2-222x300.png" alt="" width="222" height="300" /></a></p>
<p>Then, to manually rotate the logs for exim, simply run the following.</p>
<pre class="brush:bash"># logrotate exim</pre>
<p><strong>Note</strong>: you won&#8217;t see any output, but you will notice that the exim logs in /var/log are now rotated out.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.cpaneladmins.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.cpaneladmins.com/2010/09/08/manually-rotate-logs-with-logrotate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Securing SSH</title>
		<link>http://www.cpaneladmins.com/2010/07/29/securing-ssh/</link>
		<comments>http://www.cpaneladmins.com/2010/07/29/securing-ssh/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 05:49:51 +0000</pubDate>
		<dc:creator>tech</dc:creator>
				<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[AllowUsers]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[sshd]]></category>

		<guid isPermaLink="false">http://www.cpaneladmins.com/?p=375</guid>
		<description><![CDATA[Best Security Practice The ideal ssh daemon would only allow login via SSH keys. This setup can easily be configured within WHM >> Manage SSH Keys, where you&#8217;ll create a SSH key for you to login with. Once you&#8217;ve created your key, and verified that you can login with it, you&#8217;ll want to go to [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Best Security Practice</strong><br />
The ideal ssh daemon would only allow login via SSH keys.  This setup can easily be configured within WHM >> Manage SSH Keys, where you&#8217;ll create a SSH key for you to login with.  Once you&#8217;ve created your key, and verified that you can login with it, you&#8217;ll want to go to WHM >> SSH Password Authorization Tweak, which will disable PasswordAuthentication in /etc/ssh/sshd_config.</p>
<p><strong>Medium-security Configuration</strong><br />
If you have clients on your server that require PasswordAuthentication, you can still lock down SSH pretty well.</p>
<ul>
<strong>Open /etc/ssh/sshd_config in your favorite editor</strong>
</ul>
<pre class="brush:bash"> # vi /etc/ssh/sshd_config</pre>
<ul>
<strong>Disable direct root login</strong>
</ul>
<p>First, be sure that you have an alternate user configured in your environment that you can use to login via SSH.  This user must also have privileges to &#8220;su&#8221; to root.</p>
<p>Then, set the &#8220;PermitRootLogin&#8221; directive to &#8220;no&#8221;. </p>
<pre class="brush:bash">PermitRootLogin no</pre>
<ul>
<strong>Change the port that sshd listens on</strong>
</ul>
<pre class="brush:bash">Port 221</pre>
<p>Be sure to use a port equal to or less than 1024, as these are privileged ports that only root or a super-user can set daemons to listen on.  If you were to configure sshd to listen on port 11223, and a user was able to take down sshd, they could then start their own sshd daemon in place of yours.</p>
<ul>
<strong>State which users may login via SSH</strong>
</ul>
<p>If you want to only allow certain users to login via SSH, implement the &#8220;AllowUsers&#8221; directive:</p>
<pre class="brush:bash">AllowUsers bob frank</pre>
<p>This will only allow &#8216;bob&#8217; and &#8216;frank&#8217; to login via SSH.</p>
<ul>
<strong>Save and Restart SSH</strong>
</ul>
<p>Now save the file and restart the sshd service:</p>
<pre class="brush:bash">service sshd restart</pre>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.cpaneladmins.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.cpaneladmins.com/2010/07/29/securing-ssh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Locate command not found</title>
		<link>http://www.cpaneladmins.com/2010/07/29/locate-command-not-found/</link>
		<comments>http://www.cpaneladmins.com/2010/07/29/locate-command-not-found/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 04:48:26 +0000</pubDate>
		<dc:creator>tech</dc:creator>
				<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[locate]]></category>
		<category><![CDATA[slocate]]></category>

		<guid isPermaLink="false">http://www.cpaneladmins.com/?p=373</guid>
		<description><![CDATA[Error: # locate filename -bash: locate: command not found This indicates that the &#8220;slocate&#8221; package is not installed. Install it with: yum -y install slocate Then update the database with: # updatedb]]></description>
			<content:encoded><![CDATA[<p><strong>Error:</strong></p>
<pre class="brush:bash"># locate filename
-bash: locate: command not found</pre>
<p>This indicates that the &#8220;slocate&#8221; package is not installed.  Install it with:</p>
<pre class="brush:bash">yum -y install slocate</pre>
<p>Then update the database with:</p>
<pre class="brush:bash"># updatedb</pre>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.cpaneladmins.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.cpaneladmins.com/2010/07/29/locate-command-not-found/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yum rpmdb open failed</title>
		<link>http://www.cpaneladmins.com/2010/07/29/yum-rpmdb-open-failed/</link>
		<comments>http://www.cpaneladmins.com/2010/07/29/yum-rpmdb-open-failed/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 04:07:00 +0000</pubDate>
		<dc:creator>tech</dc:creator>
				<category><![CDATA[Command Line]]></category>
		<category><![CDATA[OpenVZ]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[RPM]]></category>
		<category><![CDATA[rpm rebuilddb]]></category>
		<category><![CDATA[rpmdb open failed]]></category>
		<category><![CDATA[yum]]></category>
		<category><![CDATA[yum error]]></category>
		<category><![CDATA[yum rebuilddb]]></category>
		<category><![CDATA[yum rpmdb open failed]]></category>

		<guid isPermaLink="false">http://www.cpaneladmins.com/?p=352</guid>
		<description><![CDATA[Error: rpmdb open failed This error occurs most frequently when the rpm database is corrupted. See below for instructions on how to rebuild the rpm database. # yum update Loaded plugins: fastestmirror error: no dbpath has been set error: cannot open Packages database in /%{_dbpath} Traceback (most recent call last): File "/usr/bin/yum", line 29, in [...]]]></description>
			<content:encoded><![CDATA[<p>Error: rpmdb open failed</p>
<p>This error occurs most frequently when the rpm database is corrupted.  See below for instructions on how to rebuild the rpm database.</p>
<p><code># yum update<br />
Loaded plugins: fastestmirror<br />
error: no dbpath has been set<br />
error: cannot open Packages database in /%{_dbpath}<br />
Traceback (most recent call last):<br />
  File "/usr/bin/yum", line 29, in ?<br />
    yummain.user_main(sys.argv[1:], exit_code=True)<br />
  File "/usr/share/yum-cli/yummain.py", line 309, in user_main<br />
    errcode = main(args)<br />
  File "/usr/share/yum-cli/yummain.py", line 157, in main<br />
    base.getOptionsConfig(args)<br />
  File "/usr/share/yum-cli/cli.py", line 187, in getOptionsConfig<br />
    self.conf<br />
  File "/usr/lib/python2.4/site-packages/yum/__init__.py", line 664, in <lambda><br />
    conf = property(fget=lambda self: self._getConfig(),<br />
  File "/usr/lib/python2.4/site-packages/yum/__init__.py", line 239, in _getConfig<br />
    self._conf = config.readMainConfig(startupconf)<br />
  File "/usr/lib/python2.4/site-packages/yum/config.py", line 804, in readMainConfig<br />
    yumvars['releasever'] = _getsysver(startupconf.installroot, startupconf.distroverpkg)<br />
  File "/usr/lib/python2.4/site-packages/yum/config.py", line 877, in _getsysver<br />
    idx = ts.dbMatch('provides', distroverpkg)<br />
TypeError: rpmdb open failed</code></p>
<p>The most common fix is as follows:</p>
<p><code># yum clean all<br />
# rm -f /var/lib/rpm/__db*<br />
# rpm –rebuilddb<br />
# yum update</code></p>
<p>However, if this is a VZ container (VPS), the following may be required:</p>
<p><code>#mv /dev/urandom /dev/urandom.back<br />
#mknod -m 644 /dev/urandom c 1 9</code></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.cpaneladmins.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.cpaneladmins.com/2010/07/29/yum-rpmdb-open-failed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reinstall Mailman</title>
		<link>http://www.cpaneladmins.com/2010/07/29/reinstall-mailman/</link>
		<comments>http://www.cpaneladmins.com/2010/07/29/reinstall-mailman/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 01:54:42 +0000</pubDate>
		<dc:creator>tech</dc:creator>
				<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Mail]]></category>
		<category><![CDATA[mailman]]></category>
		<category><![CDATA[reinstall]]></category>

		<guid isPermaLink="false">http://www.cpaneladmins.com/?p=345</guid>
		<description><![CDATA[If you run into an issue where you need to reinstall Mailman, you can do so with the following: # /usr/local/cpanel/bin/mailman-install --force]]></description>
			<content:encoded><![CDATA[<p>If you run into an issue where you need to reinstall Mailman, you can do so with the following:</p>
<p><code># /usr/local/cpanel/bin/mailman-install --force</code></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.cpaneladmins.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.cpaneladmins.com/2010/07/29/reinstall-mailman/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install chkrootkit</title>
		<link>http://www.cpaneladmins.com/2010/07/29/install-chkrootkit/</link>
		<comments>http://www.cpaneladmins.com/2010/07/29/install-chkrootkit/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 01:41:50 +0000</pubDate>
		<dc:creator>tech</dc:creator>
				<category><![CDATA[Command Line]]></category>
		<category><![CDATA[chkrootkit]]></category>
		<category><![CDATA[rootkit]]></category>

		<guid isPermaLink="false">http://www.cpaneladmins.com/?p=343</guid>
		<description><![CDATA[How to Install chkrootkit: # cd /usr/src # wget ftp://ftp.pangeia.com.br/pub/seg/pac/chkrootkit.tar.gz # tar -xvzf chkrootkit.tar.gz # cd chkrootkit-*/ # make sense After that it is ready to use and you can simply type: # ./chkrootkit]]></description>
			<content:encoded><![CDATA[<p>How to Install chkrootkit:</p>
<p><code># cd /usr/src<br />
# wget ftp://ftp.pangeia.com.br/pub/seg/pac/chkrootkit.tar.gz<br />
# tar -xvzf chkrootkit.tar.gz<br />
# cd chkrootkit-*/<br />
# make sense</code></p>
<p> After that it is ready to use and you can simply type:<br />
<code> # ./chkrootkit</code></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.cpaneladmins.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.cpaneladmins.com/2010/07/29/install-chkrootkit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Increase the Serial Number For All DNS Zones</title>
		<link>http://www.cpaneladmins.com/2010/07/29/how-to-increase-the-serial-number-for-all-dns-zones/</link>
		<comments>http://www.cpaneladmins.com/2010/07/29/how-to-increase-the-serial-number-for-all-dns-zones/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 01:27:42 +0000</pubDate>
		<dc:creator>tech</dc:creator>
				<category><![CDATA[Command Line]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Serial]]></category>

		<guid isPermaLink="false">http://www.cpaneladmins.com/?p=331</guid>
		<description><![CDATA[NDCHost has made available a nice script that will increase the serial numbers for all DNS zones: # cd /sbin # rm -f updateserial # wget http://www.ndchost.com/cpanel-whm/scripts/updateserial/download.php # chown root.root updateserial # chmod 0750 updateserial # /sbin/updateserial -d /var/named To activate your changes, be sure to reload rndc: # rndc reload]]></description>
			<content:encoded><![CDATA[<p>NDCHost has made available a nice script that will increase the serial numbers for all DNS zones:</p>
<p><code># cd /sbin<br />
# rm -f updateserial<br />
# wget http://www.ndchost.com/cpanel-whm/scripts/updateserial/download.php<br />
# chown root.root updateserial<br />
# chmod 0750 updateserial<br />
# /sbin/updateserial -d /var/named</code></p>
<p>To activate your changes, be sure to reload rndc:<br />
<code># rndc reload</code></p>
<p><a href="http://www.cpaneladmins.com/wp-content/uploads/2010/07/updateserial.png"><img src="http://www.cpaneladmins.com/wp-content/uploads/2010/07/updateserial-300x54.png" alt="" title="updateserial" width="390" height="68" class="alignnone size-medium wp-image-335" /></a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.cpaneladmins.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.cpaneladmins.com/2010/07/29/how-to-increase-the-serial-number-for-all-dns-zones/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>info [rebuildhttpdconf] User &#8216;username&#8217; data set has no &#8216;main_domain&#8217; key.</title>
		<link>http://www.cpaneladmins.com/2010/05/21/info-rebuildhttpdconf-user-username-data-set-has-no-main_domain-key-2/</link>
		<comments>http://www.cpaneladmins.com/2010/05/21/info-rebuildhttpdconf-user-username-data-set-has-no-main_domain-key-2/#comments</comments>
		<pubDate>Sat, 22 May 2010 05:32:31 +0000</pubDate>
		<dc:creator>tech</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Command Line]]></category>
		<category><![CDATA[EasyApache]]></category>
		<category><![CDATA[cPanel]]></category>
		<category><![CDATA[main_domain]]></category>
		<category><![CDATA[userdata]]></category>
		<category><![CDATA[users]]></category>

		<guid isPermaLink="false">http://www.cpaneladmins.com/?p=313</guid>
		<description><![CDATA[Error: info [rebuildhttpdconf] User &#8216;username&#8217; data set has no &#8216;main_domain&#8217; key. Solution: Check to see if there is a file called &#8220;main&#8221; for the user(s) affected users in /var/cpanel/userdata/username. If it&#8217;s not present, verify the domain exists in httpd.conf, and run /usr/local/cpanel/bin/userdata_update to recreate the &#8220;main&#8221; file based off the apache configuration.]]></description>
			<content:encoded><![CDATA[<p><strong>Error: </strong>info [rebuildhttpdconf] User &#8216;username&#8217; data set has no &#8216;main_domain&#8217; key.</p>
<p><strong>Solution: </strong>Check to see if there is a file called &#8220;main&#8221; for the user(s) affected users in /var/cpanel/userdata/username.</p>
<p>If it&#8217;s not present, verify the domain exists in httpd.conf, and run /usr/local/cpanel/bin/userdata_update to recreate the &#8220;main&#8221; file based off the apache configuration.  </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.cpaneladmins.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.cpaneladmins.com/2010/05/21/info-rebuildhttpdconf-user-username-data-set-has-no-main_domain-key-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reverse DNS on cPanel</title>
		<link>http://www.cpaneladmins.com/2010/05/03/reverse-dns-on-cpanel/</link>
		<comments>http://www.cpaneladmins.com/2010/05/03/reverse-dns-on-cpanel/#comments</comments>
		<pubDate>Tue, 04 May 2010 03:06:00 +0000</pubDate>
		<dc:creator>tech</dc:creator>
				<category><![CDATA[Command Line]]></category>
		<category><![CDATA[DNS]]></category>

		<guid isPermaLink="false">http://www.cpaneladmins.com/?p=297</guid>
		<description><![CDATA[97%* of providers don&#8217;t allow their customers complete control of reverse DNS. If you&#8217;re part of that 3%*, check out this wiki article as a resource. * Statistics made up, but accurate from what I&#8217;ve seen.]]></description>
			<content:encoded><![CDATA[<p>97%* of providers don&#8217;t allow their customers complete control of reverse DNS.  If you&#8217;re part of that 3%*, check out this <a href="http://docs.cpanel.net/twiki/bin/view/AllDocumentation/WHMDocs/RdnsForBind">wiki article</a> as a resource.</p>
<p><em>* Statistics made up, but accurate from what I&#8217;ve seen.</em></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.cpaneladmins.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.cpaneladmins.com/2010/05/03/reverse-dns-on-cpanel/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>info [rebuildhttpdconf] User &#8216;username&#8217; data set has no &#8216;main_domain&#8217; key.</title>
		<link>http://www.cpaneladmins.com/2010/05/03/info-rebuildhttpdconf-user-username-data-set-has-no-main_domain-key/</link>
		<comments>http://www.cpaneladmins.com/2010/05/03/info-rebuildhttpdconf-user-username-data-set-has-no-main_domain-key/#comments</comments>
		<pubDate>Tue, 04 May 2010 03:03:58 +0000</pubDate>
		<dc:creator>tech</dc:creator>
				<category><![CDATA[Command Line]]></category>
		<category><![CDATA[cPanel]]></category>

		<guid isPermaLink="false">http://www.cpaneladmins.com/?p=295</guid>
		<description><![CDATA[Error: info [rebuildhttpdconf] User 'noothna' data set has no 'main_domain' key. Check /var/cpanel/userdata/username/main and main.cache to verify it has the necessary content. Check another domain&#8217;s main and main.cache accounts to verify what you should be seeing there.]]></description>
			<content:encoded><![CDATA[<p>Error:</p>
<p><code>info [rebuildhttpdconf] User 'noothna' data set has no 'main_domain' key.<br />
</code></p>
<p>Check  /var/cpanel/userdata/username/main and main.cache to verify it has the necessary content.  Check another domain&#8217;s main and main.cache accounts to verify what you should be seeing there.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.cpaneladmins.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.cpaneladmins.com/2010/05/03/info-rebuildhttpdconf-user-username-data-set-has-no-main_domain-key/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
