<?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>David Laube&#039;s Blog &#187; Hosting</title>
	<atom:link href="http://www.dlaube.com/category/hosting/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dlaube.com</link>
	<description>Every linux user has a /home directory.</description>
	<lastBuildDate>Wed, 28 Feb 2024 17:04:21 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.0</generator>
<meta xmlns="http://www.w3.org/1999/xhtml" name="robots" content="noindex,follow" />
	<item>
		<title>mysql Innodb &#8211; Table &#8216;user&#8217; is marked as crashed and should be repaired</title>
		<link>http://www.dlaube.com/2011/01/mysql-innodb-table-user-is-marked-as-crashed-and-should-be-repaired/</link>
		<comments>http://www.dlaube.com/2011/01/mysql-innodb-table-user-is-marked-as-crashed-and-should-be-repaired/#comments</comments>
		<pubDate>Sat, 08 Jan 2011 16:42:41 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.dlaube.com/?p=377</guid>
		<description><![CDATA[I recently came across a Cpanel server (CentOS 5) upon which mysqld refused to start after /var was at 100%. After tailing the mysql error log in the default /var/lib/mysql/HOSTNAME.err it was no surprise to find that the mysql user table had been marked as crashed. On RHEL/CentOS servers, you cannot simply add the &#8220;innodb_force_recovery [...]]]></description>
				<content:encoded><![CDATA[<p>I recently came across a Cpanel server (CentOS 5) upon which mysqld refused to start after /var was at 100%. After tailing the mysql error log in the default /var/lib/mysql/HOSTNAME.err it was no surprise to find that the mysql user table had been marked as crashed. On RHEL/CentOS servers, you cannot simply add the &#8220;<a href="http://dev.mysql.com/doc/refman/5.0/en/forcing-innodb-recovery.html">innodb_force_recovery</a> = 1&#8243; (or whatever recovery level&#8230;2,3,4,5,6) to the /etc/my.cnf and do the regular <em>service mysql start</em>. You&#8217;ll have to edit the my.cnf to enable recovery and start mysql from the command line and not by the init script/service command. Only once you have mysql started on the command line can you run your repair on the mysql user table. Here is quick run-down with commands and queries to run on your Cpanel server;</p>
<div class="wp_syntax">
<div class="code">
<pre class="text" style="font-family: monospace;">[root@HOSTNAME mysql]# tail -f /var/lib/mysql/HOSTNAME.err
110108 10:37:45  InnoDB: Starting log scan based on checkpoint at
InnoDB: log sequence number 1 3749263016.
InnoDB: Doing recovery: scanned up to log sequence number 1 3749263050
InnoDB: Last MySQL binlog file position 0 79, file name ./host89-bin.000005
110108 10:37:45  InnoDB: Flushing modified pages from the buffer pool...
110108 10:37:45  InnoDB: Started; log sequence number 1 3749263050
InnoDB: !!! innodb_force_recovery is set to 1 !!!
110108 10:37:45 [ERROR] Fatal error: Can't open and lock privilege tables: Table 'user' is marked as crashed and should be repaired
110108 10:37:45  mysqld ended
</pre>
</div>
</div>
<p>Now, go ahead and enable innodb forced recovery by opening your /etc/my.cnf in your favorite text editor and make sure you have something like this:</p>
<div class="wp_syntax">
<div class="code">
<pre class="text" style="font-family: monospace;">[mysqld]
innodb_force_recovery = 1
</pre>
</div>
</div>
<p>Start mysql from the command line after enabling innodb forced recovery:</p>
<div class="wp_syntax">
<div class="code">
<pre class="text" style="font-family: monospace;">[root@HOSTNAME ~]#/usr/sbin/mysqld --skip-grant-tables --basedir=/ --datadir=/var/lib/mysql --user=mysql --pid-file=/var/lib/mysql/HOSTNAME.pid --skip-external-locking --port=3306 --socket=/var/lib/mysql/mysql.sock
</pre>
</div>
</div>
<p>Finally, it&#8217;s time to get back in to mysql and get your life back&#8230; or mysql user table at least!</p>
<div class="wp_syntax">
<div class="code">
<pre class="text" style="font-family: monospace;">[root@HOSTNAME ~]# mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 173 to server version: 4.1.22-standard-log

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql&gt; use mysql;
mysql&gt; check table user;
+------------+-------+----------+----------------------------------------------------------+
| Table      | Op    | Msg_type | Msg_text                                                 |
+------------+-------+----------+----------------------------------------------------------+
| mysql.user | check | warning  | Table is marked as crashed                               |
| mysql.user | check | warning  | 6 clients are using or haven't closed the table properly |
| mysql.user | check | error    | Record at pos: 24992 is not remove-marked                |
| mysql.user | check | error    | record delete-link-chain corrupted                       |
| mysql.user | check | error    | Corrupt                                                  |
+------------+-------+----------+----------------------------------------------------------+
5 rows in set (0.02 sec)

mysql&gt; repair table user;
+------------+--------+----------+------------------------------------------+
| Table      | Op     | Msg_type | Msg_text                                 |
+------------+--------+----------+------------------------------------------+
| mysql.user | repair | warning  | Number of rows changed from 1384 to 1385 |
| mysql.user | repair | status   | OK                                       |
+------------+--------+----------+------------------------------------------+
2 rows in set (0.48 sec)

mysql&gt; check table user;
+------------+-------+----------+----------+
| Table      | Op    | Msg_type | Msg_text |
+------------+-------+----------+----------+
| mysql.user | check | status   | OK       |
+------------+-------+----------+----------+
1 row in set (0.01 sec)

mysql&gt;exit
</pre>
</div>
</div>
<p>Now, don&#8217;t forget to <strong>REMOVE </strong>the innodb_force_recovery line from your my.cnf you added earlier! After that, just start mysql as you normally would. For more database information and management <strong><a href="https://developer.couchbase.com/comparing-document-vs-relational/">hop over to here</a></strong>.</p>
<div class="wp_syntax">
<div class="code">
<pre class="text" style="font-family: monospace;">[root@HOSTNAME mysql]# service mysql start
</pre>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.dlaube.com/2011/01/mysql-innodb-table-user-is-marked-as-crashed-and-should-be-repaired/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Cpanel &#8211; incorrect email disk space used</title>
		<link>http://www.dlaube.com/2010/08/cpanel-incorrect-email-disk-space-used/</link>
		<comments>http://www.dlaube.com/2010/08/cpanel-incorrect-email-disk-space-used/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 15:28:02 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Hosting]]></category>

		<guid isPermaLink="false">http://www.dlaube.com/?p=351</guid>
		<description><![CDATA[Control Panel -&#62; Email -&#62; Add/Remove/Manage Accounts -&#62; Show Disk Space Used When there are inconsistencies with Cpanel&#8217;s email disk space usage, you should verify the actual disk space being utilized by: (1) du -sh /home/username/mail/userdomain.com/user/ tail -1 /home/username/mail/domain.com/user/maildirsize (2) Compare the utilized disk space reported by the first du command with the bytes shown [...]]]></description>
				<content:encoded><![CDATA[<p>Control Panel -&gt; Email -&gt; Add/Remove/Manage Accounts -&gt; Show Disk Space Used</p>
<p>When there are inconsistencies with Cpanel&#8217;s email disk space usage, you should verify the actual disk space being utilized by:</p>
<p>(1)</p>
<div class="wp_syntax">
<div class="code">
<pre class="text" style="font-family: monospace;">du -sh /home/username/mail/userdomain.com/user/
tail -1 /home/username/mail/domain.com/user/maildirsize</pre>
</div>
</div>
<p>(2) Compare the utilized disk space reported by the first du command with the bytes shown in the user&#8217;s maildirsize file. If the totals reported are different delete or rename the maildirsize file (/home/username/mail/domain.com/user/maildirsize). Next, logout and then back in again within the user&#8217;s control panel and go to Control Panel -&gt; Email -&gt; Add/Remove/Manage Accounts -&gt; Show Disk Space Used</p>
<p></br></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dlaube.com/2010/08/cpanel-incorrect-email-disk-space-used/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to determine if a SATA drive is failing.</title>
		<link>http://www.dlaube.com/2010/04/how-to-determine-if-a-sata-drive-is-failing/</link>
		<comments>http://www.dlaube.com/2010/04/how-to-determine-if-a-sata-drive-is-failing/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 15:42:32 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://dlaube.com/?p=62</guid>
		<description><![CDATA[When is it a good time to check to see if a hard drive is failing? Well, when your console is full of IO/seek errors, I&#8217;d say that is a pretty good time! Hah. According to research conducted by Google, a document entitled Failure Trends in a Large Disk Drive Population states that the manufacturer, particular [...]]]></description>
				<content:encoded><![CDATA[<p>When is it a good time to check to see if a hard drive is failing? Well, when your console is full of IO/seek errors, I&#8217;d say that is a pretty good time! Hah.</p>
<p>According to <a href="http://labs.google.com/papers/disk_failures.html">research</a> conducted by Google, a document entitled <a title="Failure Trends in a Large Disk Drive Population" href="http://static.googleusercontent.com/external_content/untrusted_dlcp/labs.google.com/en/us/papers/disk_failures.pdf" target="_blank">Failure Trends in a Large Disk Drive Population</a> states that the manufacturer, particular model and vintage plays a role, but does not provide failure statistics on model and manufacturers. Most drives were run at 45C or less.</p>
<p>From the SMART data, scan errors, reallocations, offline reallocations and probational counts had a significant correlation with failure probability, whereas seek errors, calibration retries and spin retries had little significance.</p>
<p>Soooo&#8230;. you want to look at the <strong>Raw_Read_Error_Rat</strong>e, <strong>Seek_Error_Rate</strong> and <strong>Reallocated_Sector_Ct</strong> information from smartctl.</p>
<div class="wp_syntax">
<div class="code">
<pre class="text" style="font-family: monospace;">[root@SOMESERVER ~]# smartctl --all /dev/sdb | grep Error
Error logging capability:        (0x01)	Error logging supported.
  1 Raw_Read_Error_Rate     0x000f   117   100   006    Pre-fail  Always       -       166491825
  7 Seek_Error_Rate         0x000f   090   060   030    Pre-fail  Always       -       999290467
199 UDMA_CRC_Error_Count    0x003e   200   200   000    Old_age   Always       -       0
200 Multi_Zone_Error_Rate   0x0000   100   253   000    Old_age   Offline      -       0
SMART Error Log Version: 1</pre>
<pre class="text" style="font-family: monospace;">[root@SOMESERVER ~]# smartctl --all /dev/sdb| grep Reallocated_Sector_Ct5
Reallocated_Sector_Ct   0x0033   100   100   036    Pre-fail  Always       -       0</pre>
</div>
</div>
<p>In regards to Reallocated_Sector_Ct, the normalized values (current=100, worst=100) indicate the drive is in  perfect condition (higher is better, and looking at the overall report it appears that 100 is &#8220;best&#8221;). The threshold value (36) just indicates how low the normalized value would have to drop before the manufacturer would consider the drive to be in a &#8220;Pre-fail&#8221; condition.</p>
<p>If you run &#8220;<em>smartctl &#8211;all /dev/sdb | grep Error</em>&#8221; again and notice that Raw_Read_Error_Rate and Seek_Error_Rate keep incrementing AND <span style="font-family: monospace, Monaco, 'Courier New', Courier, monospace; line-height: 18px; font-size: 12px; white-space: pre;">Reallocated_Sector_Ct <span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; line-height: 19px; white-space: normal; font-size: 13px;">is greater than 0, its pretty safe to say that you have a ticking time-bomb on your hands. You should consider replacing those drives as soon as possible.</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dlaube.com/2010/04/how-to-determine-if-a-sata-drive-is-failing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unknown linux rootkit?</title>
		<link>http://www.dlaube.com/2010/04/unknown-linux-rootkit/</link>
		<comments>http://www.dlaube.com/2010/04/unknown-linux-rootkit/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 19:13:17 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.dlaube.com/?p=130</guid>
		<description><![CDATA[Recently noticed a bunch of servers (CentOS 5.2 and CentOS 4.8) with SSH fingerprint mismatches. After poking around, it appears that they had been compromised. chkrootkit and RKhunter found nothing but the suspicious entry in /dev (see below). WARNING: DSA key found for host ourserver.domain.com in /Users/username/.ssh/known_hosts:578 DSA key fingerprint f4:27:d0:32:6b:4c:9f:6e:52:6f:49:dd:19:54:c2:f1. +&#8211;[ DSA 1024]&#8212;-+ &#124; [...]]]></description>
				<content:encoded><![CDATA[<p>Recently noticed a bunch of servers (CentOS 5.2 and CentOS 4.8) with SSH fingerprint mismatches. After poking around, it appears that they had been compromised. chkrootkit and RKhunter found nothing but the suspicious entry in /dev (see below).</p>
<p>WARNING: DSA key found for host ourserver.domain.com<br />
in /Users/username/.ssh/known_hosts:578<br />
DSA key fingerprint f4:27:d0:32:6b:4c:9f:6e:52:6f:49:dd:19:54:c2:f1.<br />
+&#8211;[ DSA 1024]&#8212;-+<br />
|             ..o+|<br />
|         .    o..|<br />
|        * .    .E|<br />
|       + B . . .o|<br />
|        S * o &#8230;|<br />
|       . o = .   |<br />
|        . o +    |<br />
|         o .     |<br />
|                 |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;+</p>
<p>The authenticity of host &#8216;ourserver.domain.com (10.0.0.2)&#8217; can&#8217;t be established<br />
but keys of different type are already known for this host.<br />
RSA key fingerprint is 4c:5f:95:3e:52:08:6c:cd:0f:f8:37:38:3c:dd:bf:56.<br />
Are you sure you want to continue connecting (yes/no)? yes</p>
<p>Affected files:</p>
<div class="wp_syntax">
<div class="code">
<pre class="text" style="font-family: monospace;">/dev/sax
/bin/suidshell
/usr/local/bin/ssh-agent
/usr/local/bin/sftp-server
/usr/local/bin/ssh-agent2
/usr/local/bin/ssh
/usr/local/bin/ssh-add2
/usr/local/bin/ssh-signer
/usr/local/bin/ssh-keygen2
/usr/local/bin/ssh-probe2
/usr/local/bin/ssh-probe
/usr/local/bin/scp
/usr/local/bin/sftp
/usr/local/bin/ssh-chrootmgr
/usr/local/bin/ssh-signer2
/usr/local/bin/sftp2
/usr/local/bin/scp2
/usr/local/bin/ssh-pubkeymgr
/usr/local/bin/ssh-dummy-shell
/usr/local/bin/ssh-add
/usr/local/bin/sftp-server2
/usr/local/bin/ssh-askpass
/usr/local/bin/ssh2
/usr/local/bin/ssh-keygen
/usr/local/sbin/sshd2
/usr/local/sbin/sshd-check-conf
/usr/local/sbin/sshd</pre>
</div>
</div>
<ol> <strong>/usr/local/sbin/sshd2</strong> &#8212; captures login credentials for both root and non-root logins over SSH/SCP/sftp etc and logs to /dev/sax</p>
<p><strong>/bin/suidshell</strong> &#8212; is exactly that, a shell with the suid bit set that instantly gives root access to any unprivileged user!</p>
<p><strong>/dev/sax</strong> &#8212; stores plaintext username and password for root and non-root accounts</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.dlaube.com/2010/04/unknown-linux-rootkit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>eAccelerator with suphp woes</title>
		<link>http://www.dlaube.com/2010/03/eaccelerator-with-suphp-woes/</link>
		<comments>http://www.dlaube.com/2010/03/eaccelerator-with-suphp-woes/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 15:46:25 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[eaccelerator]]></category>
		<category><![CDATA[suexec]]></category>
		<category><![CDATA[suphp]]></category>

		<guid isPermaLink="false">http://www.dlaube.com/?p=126</guid>
		<description><![CDATA[It would appear that both mmcache and eaccelerator complain when setup under a suphp implementation for PHP and apache. Seems like most people recommend using fastcgi+suexec and then a php accelerator, but I&#8217;m uncertain how that will turn out as of right now. Another option on a per user basis would be to use Alternative [...]]]></description>
				<content:encoded><![CDATA[<p>It would appear that both mmcache and eaccelerator complain when setup under a suphp implementation for PHP and apache.  Seems like most people recommend using fastcgi+suexec and then a php accelerator, but I&#8217;m uncertain how that will turn out as of right now. Another option on a per user basis would be to use <a href="http://pecl.php.net/package/APC">Alternative PHP Cache</a> (APC )</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dlaube.com/2010/03/eaccelerator-with-suphp-woes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>pure-ftpd Can&#8217;t change directory to /var/ftp/</title>
		<link>http://www.dlaube.com/2010/03/pure-ftpd-cant-change-directory-to-varftp/</link>
		<comments>http://www.dlaube.com/2010/03/pure-ftpd-cant-change-directory-to-varftp/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 15:17:33 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.dlaube.com/?p=121</guid>
		<description><![CDATA[The problem arises when a user attempts to make an anonymous FTP connection to Cpanel user&#8217;s account who has already enabled anonymous FTP connections in their control panel. However, pure-ftpd drops you with the error &#8220;421 Can&#8217;t change directory to /var/ftp/&#8221;. workstation:~ user$ ftp testing.com Connected to testing.com. 220---------- Welcome to Pure-FTPd [privsep] [TLS] ---------- [...]]]></description>
				<content:encoded><![CDATA[<p>The problem arises when a user attempts to make an anonymous FTP connection to Cpanel user&#8217;s account who has already enabled anonymous FTP connections in their control panel. However, pure-ftpd drops you with the error &#8220;421 Can&#8217;t change directory to /var/ftp/&#8221;.</p>
<p><div class="wp_syntax">
<div class="code">
<pre class="text" style="font-family:monospace;">
workstation:~ user$ ftp testing.com
Connected to testing.com.
220---------- Welcome to Pure-FTPd [privsep] [TLS] ----------
220-You are user number 3 of 50 allowed.
220-Local time is now 11:02. Server port: 21.
220-IPv6 connections are also welcome on this server.
220 You will be disconnected after 15 minutes of inactivity.
Name (testing.com:user): anonymous
421 Can't change directory to /var/ftp/ [/]
ftp: Login failed.
</pre>
</div>
</div>
<p>The solution(s):<br />
1. Use anonymous@domain.com and any password instead of just anonymous<br />
&#8230;OR<br />
2. Assign the Cpanel user a dedicated IP address where FTP logins with just &#8220;anonymous&#8221; will work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dlaube.com/2010/03/pure-ftpd-cant-change-directory-to-varftp/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>apache_conf_distiller User data set has no &#8216;main_domain&#8217; key.</title>
		<link>http://www.dlaube.com/2010/02/apache_conf_distiller-user-data-set-has-no-main_domain-key/</link>
		<comments>http://www.dlaube.com/2010/02/apache_conf_distiller-user-data-set-has-no-main_domain-key/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 01:55:41 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Cpanel]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://dlaube.com/?p=84</guid>
		<description><![CDATA[After a server was hacked recently, the attackers replaced all files named index / default / main with their typical 0wned-by message and javascript. Of the &#8220;main&#8221; files that were affected, the /var/cpanel/userdata/USER/main files were also overwritten. These files contain important cpanel domain information which are required to build a new httpd.conf using the apache_conf_distiller. [...]]]></description>
				<content:encoded><![CDATA[<p>After a server was hacked recently, the attackers replaced all files named index / default / main with their typical 0wned-by message and javascript. Of the &#8220;main&#8221; files that were affected, the /var/cpanel/userdata/USER/main files were also overwritten. These files contain important cpanel domain information which are required to build a new httpd.conf using the apache_conf_distiller. The following steps should regenerate a working apache userdata in order to fix subdomains. Thanks to Josh for finding userdata_update!</p>
<p>
<div class="wp_syntax">
<div class="code">
<pre class="text" style="font-family:monospace;">
/etc/init.d/httpd stop
mv /usr/local/apache/conf/httpd.conf /usr/local/apache/conf/httpd.conf-notworking
cp -a OLDHTTPD.CONF /usr/local/apache/conf/
mv /var/cpanel/userdata /var/cpanel/userdata-BAK
/usr/local/cpanel/bin/userdata_update
cp -a /var/cpanel/userdata /usr/local/apache/conf
/etc/init.d/httpd start
</pre>
</div>
</div>
<p>Run the /usr/local/cpanel/bin/apache_conf_distiller &#8211;update to ensure the main_domain key errors are gone.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dlaube.com/2010/02/apache_conf_distiller-user-data-set-has-no-main_domain-key/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
