<?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>The Virtuozzo Admin</title>
	<atom:link href="http://www.thevirtuozzoadmin.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thevirtuozzoadmin.com</link>
	<description>We know stuff about Virtuozzo.</description>
	<lastBuildDate>Fri, 11 Nov 2011 13:06:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How to Manually Migrate a VZ Container</title>
		<link>http://www.thevirtuozzoadmin.com/how-to-manually-migrate-a-vz-container/</link>
		<comments>http://www.thevirtuozzoadmin.com/how-to-manually-migrate-a-vz-container/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 13:06:55 +0000</pubDate>
		<dc:creator>Vanessa</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.thevirtuozzoadmin.com/?p=82</guid>
		<description><![CDATA[Have a tricky VPS that vzmigrate just can&#8217;t move? Luckily, Virtuozzo (and OpenVZ for that matter) are pretty simple in terms of how the containers are set up. You&#8217;re mainly dealing with two locations that data for the container is stored: /vz/private/$VEID /etc/vz/conf/$VEID.conf To manually move a container to another node, all you need to [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Have a tricky VPS that vzmigrate just can&#8217;t move? Luckily, Virtuozzo (and OpenVZ for that matter) are pretty simple in terms of how the containers are set up.  You&#8217;re mainly dealing with two locations that data for the container is stored:</p>
<p>/vz/private/$VEID<br />
/etc/vz/conf/$VEID.conf</p>
<p>To manually move a container to another node, all you need to do is copy those folders:</p>
<p>rsync -av /vz/private/$VEID $newserver:/vz/private<br />
rsync -av /etc/vz/conf/$VEID $newserver:/etc/vz/conf</p>
<p>Then on the server server, just start it right up. You do need to have the container&#8217;s OS template installed on the new node, as referenced in the container&#8217;s config file.  </p>
<p>This same process also applies to cloning a VPS, which is particularly useful on an OpenVZ server where the vzmlocal command isn&#8217;t available.  All you have to do is use similar commands to rsync the container&#8217;s private folder to a new VEID:</p>
<p>rsync -av /vz/private/$VEID /vz/private/$NEWVEID<br />
rsync -av /etc/vz/conf/$VEID /etc/vz/conf/$NEWVEID</p>
<p>Then just change the hostname and ip variables in the new container&#8217;s config file.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thevirtuozzoadmin.com/how-to-manually-migrate-a-vz-container/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading from VZ 4.0 to VZ 4.6</title>
		<link>http://www.thevirtuozzoadmin.com/upgrading-from-vz-4-0-to-vz-4-6/</link>
		<comments>http://www.thevirtuozzoadmin.com/upgrading-from-vz-4-0-to-vz-4-6/#comments</comments>
		<pubDate>Mon, 28 Feb 2011 18:26:48 +0000</pubDate>
		<dc:creator>Vanessa</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[howto]]></category>

		<guid isPermaLink="false">http://www.thevirtuozzoadmin.com/?p=78</guid>
		<description><![CDATA[&#160; If your server already has VZ 4.0, it&#8217;s very easy to upgrade to 4.6. You pretty much don&#8217;t have a choice because if you have other servers running 4.6, you won&#8217;t be able to move containers back and forth, and you won&#8217;t have many new kernel updates headed your way. Note: This procedure is [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>If your server already has VZ 4.0, it&#8217;s very easy to upgrade to 4.6. You pretty much don&#8217;t have a choice because if you have other servers running 4.6, you won&#8217;t be able to move containers back and forth, and you won&#8217;t have many new kernel updates headed your way.</p>
<p><strong>Note:</strong> This procedure is only for VZ 4.0 servers. If you run a previous version, you need to re-OS and reinstall VZ. You can&#8217;t upgrade to 4.6 from previous vesions!</p>
<p><strong>1. Migrate all your containers off the server</strong></p>
<p>If this is a live server, you&#8217;ll want to move off all your customers to avoid lengthy downtime.  If you plan on moving them back, you can speed up the reverse process by moving off the containers and retaining their private areas</p>
<p><code>for ve in `vzlist -H -o veid,diskspace |sort -rnk2 |awk '{print $1}'` ; do vzmigrate -r no 192.168.x.x $ve ; done</code></p>
<p><strong>2. Run a Yum update</strong></p>
<p>Take this opportunity to update your operating system, noting that Virtuozzo already has an exclude file (/etc/yum/swsoft-excludes) to prevent the updates of certain packages.</p>
<blockquote><p>yum update -y</p></blockquote>
<p><strong>3) install VZ 4.6</strong></p>
<p><code>cd /root<br />
wget <a title="http://download.parallels.com/pvc/46/lin/rtm/vzinstall-linux-x86_64.bin" rel="nofollow" href="http://download.parallels.com/pvc/46/lin/rtm/vzinstall-linux-x86_64.bin">http://download.parallels.com/pvc/46/lin/rtm/vzinstall-linux-x86_64.bin</a><br />
chmod 755 vzinstall-linux-x86_64.bin<br />
./vzinstall-linux-x86_64.bin</code></p>
<p><strong>4) Run the self update</strong></p>
<p>After the installation, run <strong>vzup2date</strong> twice (one is a self-update, the other is the kernel update)</p>
<p><strong>5) reboot</strong></p>
<p><strong>6) Reapply customizations</strong></p>
<p>If you had any customizations to VZ scripts (such as files in /etc/sysconfig/vz-script), you may need to re-apply them</p>
<p><strong>7) Re-populate the server</strong></p>
<p>Start migrations back to the server, which will take a fraction of the time since the private areas were retained:</p>
<p><code>for ve in `vzlist -H -o veid,diskspace |sort -rnk2 |awk '{print $1}'` ; do vzmigrate -r yes 192.168.x.x $ve; done</code></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thevirtuozzoadmin.com/upgrading-from-vz-4-0-to-vz-4-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Find Your HWID</title>
		<link>http://www.thevirtuozzoadmin.com/how-to-find-your-hwid/</link>
		<comments>http://www.thevirtuozzoadmin.com/how-to-find-your-hwid/#comments</comments>
		<pubDate>Wed, 03 Nov 2010 14:29:43 +0000</pubDate>
		<dc:creator>Vanessa</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.thevirtuozzoadmin.com/?p=76</guid>
		<description><![CDATA[When activating or updating a VZ license you need to have a HWID for your machine. In case you don&#8217;t know how to find that, simply run: cat /proc/vz/hwid If you see more than one listed, always use the first one No related posts. Related posts brought to you by Yet Another Related Posts Plugin.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>When activating or updating a VZ license you need to have a HWID for your machine. In case you don&#8217;t know how to find that, simply run:</p>
<blockquote><p>cat /proc/vz/hwid</p></blockquote>
<p>If you see more than one listed, always use the first one</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thevirtuozzoadmin.com/how-to-find-your-hwid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VZ quota error: lstat (No such file or directory)</title>
		<link>http://www.thevirtuozzoadmin.com/vz-quota-error-lstat-no-such-file-or-directory/</link>
		<comments>http://www.thevirtuozzoadmin.com/vz-quota-error-lstat-no-such-file-or-directory/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 14:38:21 +0000</pubDate>
		<dc:creator>Vanessa</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fixes]]></category>

		<guid isPermaLink="false">http://www.thevirtuozzoadmin.com/?p=73</guid>
		<description><![CDATA[If you attempt to start a container after a hardware node crash, you may see an error like this: Starting Container ... vzquota : (warning) Incorrect quota shutdown for id 101, recalculating disk usage vzquota : (error) quota check : lstat `somefile.ext': No such file or directory Running vzquota on failed for Container 101 [1] [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>If you attempt to start a container after a hardware node crash, you may see an error like this:</p>
<p><code>Starting Container ...<br />
vzquota : (warning) Incorrect quota shutdown for id 101, recalculating disk usage<br />
vzquota : (error) quota check : lstat `somefile.ext': No such file or directory<br />
Running vzquota on failed for Container 101 [1]</code></p>
<p>This means that the container&#8217;s quota system is crashed. You can restart it simply switching the quota off and on:</p>
<blockquote><p>
vzquota off 101<br />
vzquota on 101</p></blockquote>
<p>The container should now start up properly.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thevirtuozzoadmin.com/vz-quota-error-lstat-no-such-file-or-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Which Container is Running that Process?</title>
		<link>http://www.thevirtuozzoadmin.com/which-container-is-running-that-process/</link>
		<comments>http://www.thevirtuozzoadmin.com/which-container-is-running-that-process/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 20:26:09 +0000</pubDate>
		<dc:creator>Vanessa</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://www.thevirtuozzoadmin.com/?p=56</guid>
		<description><![CDATA[When troubleshooting load issues on a node, top is still an effective command for a quick glance at what&#8217;s going on. However, since the PIDs for processes in a container do not correlate with users on the parent node, it can sometimes be unclear as to what container is running the processes. Virtuozzo has a [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>When troubleshooting load issues on a node, top is still an effective command for a quick glance at what&#8217;s going on. However, since the PIDs for processes in a container do not correlate with users on the parent node, it can sometimes be unclear as to what container is running the processes.</p>
<p>Virtuozzo has a built-in command called vzpid which identifies the container running a given process. For example, if I wanted to find out which container was running process ID #31299:</p>
<p><code>[root@server ~]# vzpid 31299<br />
Pid    VEID    Name<br />
31299    102    mysqld</code></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thevirtuozzoadmin.com/which-container-is-running-that-process/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vzquota : (error) Quota on syscall for [VE]: Device or resource busy</title>
		<link>http://www.thevirtuozzoadmin.com/vzquota-error-quota-on-syscall-for-ve-device-or-resource-busy/</link>
		<comments>http://www.thevirtuozzoadmin.com/vzquota-error-quota-on-syscall-for-ve-device-or-resource-busy/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 02:09:21 +0000</pubDate>
		<dc:creator>Vanessa</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fixes]]></category>

		<guid isPermaLink="false">http://www.thevirtuozzoadmin.com/?p=34</guid>
		<description><![CDATA[When starting up a VPS, you may see an error like this: vzquota : (error) Quota on syscall for 101: Device or resource busy In more detail: Starting Container ... vzquota : (error) Quota on syscall for id 1: Device or resource busy vzquota : (error)     Possible reasons: vzquota : (error)     - Container's [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>When starting up a VPS, you may see an error like this:</p>
<p><code>vzquota : (error) Quota on syscall for 101: Device or resource busy</code></p>
<p>In more detail:</p>
<p><code>Starting Container ...<br />
vzquota : (error) Quota on syscall for id 1: Device or resource busy<br />
vzquota : (error)     Possible reasons:<br />
vzquota : (error)     - Container's root is already mounted<br />
vzquota : (error)     - there are opened files inside Container's private area<br />
vzquota : (error)     - your current working directory is inside Container's<br />
vzquota : (error)       private area<br />
vzquota : (error)     Use -v option to see currently opened file(s).<br />
Running vzquota on failed for Container 1 [3]<br />
Container start failed</code></p>
<p>If this happens, run a grep to see if any processes are running from inside the container&#8217;s private folder (replace &#8217;1&#8242; with your VPS id)</p>
<p><code>lsof 2&gt; /dev/null | egrep '/vz/root/1/|/vz/private/1/'</code></p>
<p>Kill of any processes this returns, and restart the container.</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thevirtuozzoadmin.com/vzquota-error-quota-on-syscall-for-ve-device-or-resource-busy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>“Broken” Files In VPS Container</title>
		<link>http://www.thevirtuozzoadmin.com/broken-files-in-vps-container/</link>
		<comments>http://www.thevirtuozzoadmin.com/broken-files-in-vps-container/#comments</comments>
		<pubDate>Mon, 10 May 2010 00:24:56 +0000</pubDate>
		<dc:creator>Vanessa</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fixes]]></category>
		<category><![CDATA[templates]]></category>

		<guid isPermaLink="false">http://www.thevirtuozzoadmin.com/?p=23</guid>
		<description><![CDATA[I came across a VPS that was recently moved to another node and noticed that Apache wasn&#8217;t starting due to missing modules.  When I saw that the modules folder in Apache was linked to /usr/lib64, I checked that folder to see that the httpd directory was there, but not really &#8220;there&#8221;. It looked like this: [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I came across a VPS that was recently moved to another node and noticed that Apache wasn&#8217;t starting due to missing modules.  When I saw that the modules folder in Apache was linked to /usr/lib64, I checked that folder to see that the httpd directory was there, but not really &#8220;there&#8221;. It looked like this:</p>
<p><code>?---------  ? ?    ?       ?            ? httpd</code></p>
<p>Question marks in the file name and descriptor, clearly indicating that the VPS container was missing something. Well, I went onto the parent node and into /vz/private/VEID/fs/root/usr/lib64 and the files were there, along with some strange broken symlink that looks like this:</p>
<p><code>lrwxrwxrwx   1 root root   72 Mar  8  2009 ._vzlnk_. -&gt; ////centos/5/x86_64/httpd-2.2.3-11.el5_2.centos.4.x86_64/usr/lib64/httpd</code></p>
<p>To fix one instance, I removed the broken symlink and that fixed the problem. I also tried to fix this on another container by copying over the httpd folder in the lib64 directory and that did the trick as well, but I assume it&#8217;s the broken symlink that caused the problem.</p>
<p>Further troubleshooting indicated that the container was somehow using a different OS template than what it was on the previous server, which was causing Virtuozzo to be unable to find some files. If this is the case, you can edit /etc/vz/conf/$VEID.conf and change the ostemplate value to what it should be, then restart the container.</p>
<p>If that doesn&#8217;t fix it, you&#8217;ll probably still need to remove all those bad symlinks. Here&#8217;s a simple script stolen from <a href="http://hostingaldescubierto.com/wordpress/2009/12/31/the-problem-with-moving-vps-due-to-non-compliance-with-versions-of/" target="_blank">here</a> that should remove all these for you:</p>
<blockquote><p>#!/bin/bash<br />
VEID=101 # Replace with your container ID<br />
for i in `find /vz/private/$VEID/fs/root/ -noleaf -type l -print | perl -nle &#8216;-e || print&#8217;|grep ._vzlnk_.`<br />
do<br />
ln -sf `ls -ga $i|grep ._vzlnk_.|awk &#8216;{print $10}&#8217;|sed &#8216;s/\/\/\//\/vz\/template/&#8217;` $i<br />
done</p></blockquote>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thevirtuozzoadmin.com/broken-files-in-vps-container/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>audit_log_user_command(): Connection refused</title>
		<link>http://www.thevirtuozzoadmin.com/audit_log_user_command-connection-refused/</link>
		<comments>http://www.thevirtuozzoadmin.com/audit_log_user_command-connection-refused/#comments</comments>
		<pubDate>Tue, 04 May 2010 05:13:04 +0000</pubDate>
		<dc:creator>Vanessa</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.thevirtuozzoadmin.com/?p=21</guid>
		<description><![CDATA[When executing commands on a Redhat-family VPS (Such as Fedora or CentOS) you may get the following error when executing commands via sudo: audit_log_user_command(): Connection refused All this means is that a feature for audit logging is disabled in the Linux kernel, and it&#8217;s nothing to be concerned about. However, it seems that no one [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>When executing commands on a Redhat-family VPS (Such as Fedora or CentOS) you may get the following error when executing commands via sudo:</p>
<blockquote><p>audit_log_user_command(): Connection refused</p></blockquote>
<p>All this means is that a feature for audit logging is disabled in the Linux kernel, and it&#8217;s nothing to be concerned about. However, it seems that no one knows how to get rid of it&#8230;</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thevirtuozzoadmin.com/audit_log_user_command-connection-refused/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Recreating the Service Container</title>
		<link>http://www.thevirtuozzoadmin.com/recreating-the-service-container/</link>
		<comments>http://www.thevirtuozzoadmin.com/recreating-the-service-container/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 18:09:00 +0000</pubDate>
		<dc:creator>Vanessa</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[vzagent]]></category>

		<guid isPermaLink="false">http://www.thevirtuozzoadmin.com/?p=17</guid>
		<description><![CDATA[If your service container isn&#8217;t working or you need to recreate it, follow these steps: 1) Download the autoinstaller for Virtuozzo: wget http://download.parallels.com/virtuozzo/virtuozzo4.0/linux/vzinstall-linux.bin 2) Run the autoinstaller and select the download only option. This will download the files to /root/virtuozzo chmod 755 vzinstall-linux.bin ./vzinstall-linux.bin 3) Extract the source to a temporary location: mkdir -p /vz/temp [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>If your service container isn&#8217;t working or you need to recreate it, follow these steps:</p>
<p>1) Download the autoinstaller for Virtuozzo:</p>
<p><code>wget <a title="http://download.parallels.com/virtuozzo/virtuozzo4.0/linux/vzinstall-linux.bin" rel="nofollow" href="http://download.parallels.com/virtuozzo/virtuozzo4.0/linux/vzinstall-linux.bin">http://download.parallels.com/virtuozzo/virtuozzo4.0/linux/vzinstall-linux.bin</a></code></p>
<p>2) Run the autoinstaller and select the download only option. This will download the files to /root/virtuozzo<br />
<code><br />
chmod 755 vzinstall-linux.bin<br />
./vzinstall-linux.bin</code></p>
<p>3) Extract the source to a temporary location:<br />
<code><br />
mkdir -p /vz/temp<br />
/root/virtuozzo/download/Linux/{arch}/virtuozzo-{version}-{arch}.sfx -d /vz/temp--extract</code></p>
<p>4) Now create the service container and assign it an IP:</p>
<p><code>vzsveinstall -v -D /vz/temp -s $ip</code></p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thevirtuozzoadmin.com/recreating-the-service-container/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Needed APF Tweaks for Virtuozzo Servers</title>
		<link>http://www.thevirtuozzoadmin.com/needed-apf-tweaks-for-virtuozzo-servers/</link>
		<comments>http://www.thevirtuozzoadmin.com/needed-apf-tweaks-for-virtuozzo-servers/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 03:41:42 +0000</pubDate>
		<dc:creator>Vanessa</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.thevirtuozzoadmin.com/?p=13</guid>
		<description><![CDATA[If you&#8217;re installing APF on a VPS, chances are you&#8217;ll need to make a couple changes to your APF&#8217;s config file. Here are a couple errors that are common: eth0: error fetching interface information: Device not found You need to change the interface values in apf.conf to use venet0 instead of eth0 since the VPS [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re installing APF on a VPS, chances are you&#8217;ll need to make a couple changes to your APF&#8217;s config file. Here are a couple errors that are common:</p>
<p><code>eth0: error fetching interface information: Device not found</code></p>
<p>You need to change the interface values in apf.conf to use venet0 instead of eth0 since the VPS is on a virtual interface:</p>
<p><code>IFACE_IN="eth0"<br />
IFACE_OUT="eth0"</code></p>
<p>unable to load iptables module (ip_tables), aborting.</p>
<p>Change the <strong>MONOKERN</strong> value from &#8217;0&#8242; to &#8217;1&#8242; .</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.thevirtuozzoadmin.com/needed-apf-tweaks-for-virtuozzo-servers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

