<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Elevated Community - Resource]]></title>
		<link>http://www.elevatedservers.net/forums/</link>
		<description><![CDATA[Elevated Community - http://www.elevatedservers.net/forums]]></description>
		<pubDate>Thu, 09 Sep 2010 13:11:11 -0700</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[HOW-TO: Harden A Fresh CentOS 5.x Server]]></title>
			<link>http://www.elevatedservers.net/forums/showthread.php?tid=28</link>
			<pubDate>Fri, 23 Apr 2010 08:13:00 -0700</pubDate>
			<guid isPermaLink="false">http://www.elevatedservers.net/forums/showthread.php?tid=28</guid>
			<description><![CDATA[#!/bin/sh<br />
<br />
set -ve<br />
<br />
# Script to harden a fresh CentOS 4 or 5 base server install, which installs<br />
<br />
# any updated packages plus a few useful extras, removes unnecessary<br />
<br />
# services and setuid bits, and does a little performance tuning. Running it more than once shouldn't hurt anything.<br />
<br />
#<br />
<br />
# Run with:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>wget -O- http://ftp.die.net/pub/harden-centos/harden-centos | sh<br />
PATH=/bin:/usr/bin:/sbin:/usr/sbin</code></div></div>
<br />
# Update rpm and yum if possible. (Limit dependencies.)<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>yum -y install rpm yum</code></div></div>
<br />
# Installing useful packages<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>yum -y install joe tcpdump mtr postfix strace zsh gdb perl vixie-cron logrotate</code></div></div>
<br />
# Removing unnecessary daemons and setuid binaries<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>yum -y remove squid krb5-workstation cups at rsh sudo isdn4k-utils sendmail &#92;<br />
<br />
slocate apmd irda-utils mt-st gpm samba-common sendmail-cf talk &#92;<br />
<br />
up2date ypbind yp-tools wvdial lockdev procmail xorg-x11-font-utils &#92;<br />
<br />
pam_ccreds gdm bluez-utils yum-updatesd</code></div></div>
<br />
# Upgrading to latest packages<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>yum -y upgrade</code></div></div>
<br />
# Removing unnecessary setuid bits<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>find / /usr -xdev -type f -perm +04000 | &#92;<br />
<br />
grep -vP '^(/bin/(su|ping|traceroute)|/usr/bin/(passwd|chsh|crontab)|/usr/libexec/openssh/ssh-keysign)&#36;' | &#92;<br />
<br />
xargs -r chmod ug-s</code></div></div>
<br />
# Removing unnecessary setgid bits<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>find / /usr -xdev -type f -perm +02000 | &#92;<br />
<br />
grep -vP '^(/usr/sbin/(utempter|postdrop|postqueue)|/usr/bin/ssh-agent)&#36;' | &#92;<br />
<br />
xargs -r chmod g-s</code></div></div>
<br />
# Setting nosuid,nodev on user partitions, noatime on ext2 and ext3<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>perl -i~ -p -e 's/(&#92;sext[23&#93;&#92;s+)(defaults)(?=&#92;s)/&#36;1&#36;2,noatime/;next if m#&#92;s/(?:usr|bin)?&#92;s#;next unless m#&#92;s(ext[23&#93;|tmpfs|auto)&#92;s#;s/(?&lt;=&#92;s)(defaults(?:,noatime)?)(?=&#92;s<br />
)/&#36;1,nosuid,nodev/' /etc/fstab</code></div></div>
<br />
# Adding blackhole routes for bogons<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>[ -f /etc/sysconfig/network-scripts/route-lo &#93; || cat &lt;&lt;EOF &gt; /etc/sysconfig/network-scripts/route-lo<br />
<br />
blackhole 0.0.0.0/8<br />
<br />
blackhole 10.0.0.0/8<br />
<br />
blackhole 169.254.0.0/16<br />
<br />
blackhole 172.16.0.0/12<br />
<br />
blackhole 192.168.0.0/16<br />
<br />
blackhole 198.18.0.0/15<br />
<br />
EOF</code></div></div>
<br />
# Add useful settings to /etc/sysctl.conf<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>grep -q kernel.panic /etc/sysctl.conf || cat&lt;&lt;EOF &gt;&gt; /etc/sysctl.conf</code></div></div>
<br />
# Reboot a minute after an Oops<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>kernel.panic = 60</code></div></div>
<br />
# Syncookies make SYN flood attacks ineffective<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>net.ipv4.tcp_syncookies = 1</code></div></div>
<br />
# Ignore bad ICMP<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>net.ipv4.icmp_echo_ignore_broadcasts = 1<br />
<br />
net.ipv4.icmp_ignore_bogus_error_responses = 1</code></div></div>
<br />
# Reply to ARPs only from correct interface (required for DSR load-balancers)<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>net.ipv4.conf.all.arp_announce = 2<br />
<br />
net.ipv4.conf.all.arp_ignore = 1<br />
<br />
EOF<br />
<br />
sysctl -p</code></div></div>
<br />
# Allow any following commands to fail without stopping<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>set +e</code></div></div>
<br />
# Shutting down unwanted services<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>for d in acpid rpcidmapd rpcgssd nfslock netfs portmap avahi-daemon avahi-dnsconfd pcscd bluetooth; do<br />
<br />
chkconfig &#36;d off<br />
<br />
service &#36;d stop<br />
<br />
done</code></div></div>
<br />
# Turn on cron-based auto-updates<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>yum -y install yum-cron<br />
<br />
for d in crond yum yum-cron; do<br />
<br />
chkconfig &#36;d on<br />
<br />
service &#36;d start<br />
<br />
done</code></div></div>
<br />
# COMPLETED!<br />
<br />
Thanks to webicero for creating this guides.<br />
For more informations and guides about harndening and securing your server, you may also read the guides in <a href="http://www.securecentos.com/" target="_blank">SecureCentOS.com</a>]]></description>
			<content:encoded><![CDATA[#!/bin/sh<br />
<br />
set -ve<br />
<br />
# Script to harden a fresh CentOS 4 or 5 base server install, which installs<br />
<br />
# any updated packages plus a few useful extras, removes unnecessary<br />
<br />
# services and setuid bits, and does a little performance tuning. Running it more than once shouldn't hurt anything.<br />
<br />
#<br />
<br />
# Run with:<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>wget -O- http://ftp.die.net/pub/harden-centos/harden-centos | sh<br />
PATH=/bin:/usr/bin:/sbin:/usr/sbin</code></div></div>
<br />
# Update rpm and yum if possible. (Limit dependencies.)<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>yum -y install rpm yum</code></div></div>
<br />
# Installing useful packages<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>yum -y install joe tcpdump mtr postfix strace zsh gdb perl vixie-cron logrotate</code></div></div>
<br />
# Removing unnecessary daemons and setuid binaries<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>yum -y remove squid krb5-workstation cups at rsh sudo isdn4k-utils sendmail &#92;<br />
<br />
slocate apmd irda-utils mt-st gpm samba-common sendmail-cf talk &#92;<br />
<br />
up2date ypbind yp-tools wvdial lockdev procmail xorg-x11-font-utils &#92;<br />
<br />
pam_ccreds gdm bluez-utils yum-updatesd</code></div></div>
<br />
# Upgrading to latest packages<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>yum -y upgrade</code></div></div>
<br />
# Removing unnecessary setuid bits<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>find / /usr -xdev -type f -perm +04000 | &#92;<br />
<br />
grep -vP '^(/bin/(su|ping|traceroute)|/usr/bin/(passwd|chsh|crontab)|/usr/libexec/openssh/ssh-keysign)&#36;' | &#92;<br />
<br />
xargs -r chmod ug-s</code></div></div>
<br />
# Removing unnecessary setgid bits<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>find / /usr -xdev -type f -perm +02000 | &#92;<br />
<br />
grep -vP '^(/usr/sbin/(utempter|postdrop|postqueue)|/usr/bin/ssh-agent)&#36;' | &#92;<br />
<br />
xargs -r chmod g-s</code></div></div>
<br />
# Setting nosuid,nodev on user partitions, noatime on ext2 and ext3<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>perl -i~ -p -e 's/(&#92;sext[23]&#92;s+)(defaults)(?=&#92;s)/&#36;1&#36;2,noatime/;next if m#&#92;s/(?:usr|bin)?&#92;s#;next unless m#&#92;s(ext[23]|tmpfs|auto)&#92;s#;s/(?&lt;=&#92;s)(defaults(?:,noatime)?)(?=&#92;s<br />
)/&#36;1,nosuid,nodev/' /etc/fstab</code></div></div>
<br />
# Adding blackhole routes for bogons<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>[ -f /etc/sysconfig/network-scripts/route-lo ] || cat &lt;&lt;EOF &gt; /etc/sysconfig/network-scripts/route-lo<br />
<br />
blackhole 0.0.0.0/8<br />
<br />
blackhole 10.0.0.0/8<br />
<br />
blackhole 169.254.0.0/16<br />
<br />
blackhole 172.16.0.0/12<br />
<br />
blackhole 192.168.0.0/16<br />
<br />
blackhole 198.18.0.0/15<br />
<br />
EOF</code></div></div>
<br />
# Add useful settings to /etc/sysctl.conf<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>grep -q kernel.panic /etc/sysctl.conf || cat&lt;&lt;EOF &gt;&gt; /etc/sysctl.conf</code></div></div>
<br />
# Reboot a minute after an Oops<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>kernel.panic = 60</code></div></div>
<br />
# Syncookies make SYN flood attacks ineffective<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>net.ipv4.tcp_syncookies = 1</code></div></div>
<br />
# Ignore bad ICMP<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>net.ipv4.icmp_echo_ignore_broadcasts = 1<br />
<br />
net.ipv4.icmp_ignore_bogus_error_responses = 1</code></div></div>
<br />
# Reply to ARPs only from correct interface (required for DSR load-balancers)<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>net.ipv4.conf.all.arp_announce = 2<br />
<br />
net.ipv4.conf.all.arp_ignore = 1<br />
<br />
EOF<br />
<br />
sysctl -p</code></div></div>
<br />
# Allow any following commands to fail without stopping<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>set +e</code></div></div>
<br />
# Shutting down unwanted services<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>for d in acpid rpcidmapd rpcgssd nfslock netfs portmap avahi-daemon avahi-dnsconfd pcscd bluetooth; do<br />
<br />
chkconfig &#36;d off<br />
<br />
service &#36;d stop<br />
<br />
done</code></div></div>
<br />
# Turn on cron-based auto-updates<br />
<div class="codeblock">
<div class="title">Code:<br />
</div><div class="body" dir="ltr"><code>yum -y install yum-cron<br />
<br />
for d in crond yum yum-cron; do<br />
<br />
chkconfig &#36;d on<br />
<br />
service &#36;d start<br />
<br />
done</code></div></div>
<br />
# COMPLETED!<br />
<br />
Thanks to webicero for creating this guides.<br />
For more informations and guides about harndening and securing your server, you may also read the guides in <a href="http://www.securecentos.com/" target="_blank">SecureCentOS.com</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Setting up Kloxo for Websites]]></title>
			<link>http://www.elevatedservers.net/forums/showthread.php?tid=21</link>
			<pubDate>Mon, 24 Aug 2009 02:04:08 -0700</pubDate>
			<guid isPermaLink="false">http://www.elevatedservers.net/forums/showthread.php?tid=21</guid>
			<description><![CDATA[Now before trying to use Kloxo, update to the latest version but clicking the Kloxo Management table along the top of your control panel and clicking the Update Home icon. This will forward you to the update function of Kloxo and display the version number installed and the current version available. Simply click update if these do not match. The update task is very quick and should complete within 5 minutes.<br />
<br />
Now you are ready to login to the Kloxo interface at https://your-vps-ipaddress:7777 or http://your-vps-ipaddress:7778<br />
<br />
Before anything else, the first thing you should do is to create a DNS Template. Look for DNS Templates icon in the resources section, once you clicked it, click on the Add DNS Template button. This will need you to specify your DNS Template name and specify what nameservers will be used for sites hosted within your VPS. The task should be similar at most registrars, you will need to create 2 nameservers, but you only have 1 IP and it is perfectly acceptable to create more than 1 registered nameserver using the same IP address. The IP you will use is the IP of your VPS. The name of the nameserver, or FQDN, will be something like ns1.yourdomain.com and ns2.yourdomain.com. After all these has been done, you can save your template and you are ready to add sites.]]></description>
			<content:encoded><![CDATA[Now before trying to use Kloxo, update to the latest version but clicking the Kloxo Management table along the top of your control panel and clicking the Update Home icon. This will forward you to the update function of Kloxo and display the version number installed and the current version available. Simply click update if these do not match. The update task is very quick and should complete within 5 minutes.<br />
<br />
Now you are ready to login to the Kloxo interface at https://your-vps-ipaddress:7777 or http://your-vps-ipaddress:7778<br />
<br />
Before anything else, the first thing you should do is to create a DNS Template. Look for DNS Templates icon in the resources section, once you clicked it, click on the Add DNS Template button. This will need you to specify your DNS Template name and specify what nameservers will be used for sites hosted within your VPS. The task should be similar at most registrars, you will need to create 2 nameservers, but you only have 1 IP and it is perfectly acceptable to create more than 1 registered nameserver using the same IP address. The IP you will use is the IP of your VPS. The name of the nameserver, or FQDN, will be something like ns1.yourdomain.com and ns2.yourdomain.com. After all these has been done, you can save your template and you are ready to add sites.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[lxadmin/Kloxo]]></title>
			<link>http://www.elevatedservers.net/forums/showthread.php?tid=18</link>
			<pubDate>Mon, 18 May 2009 09:55:55 -0700</pubDate>
			<guid isPermaLink="false">http://www.elevatedservers.net/forums/showthread.php?tid=18</guid>
			<description><![CDATA[Kloxo, (formerly known as lxadmin) comes with Lighttpd preinstalled. For you who does not know what is lighttpd, please refer to this link: <a href="http://en.wikipedia.org/wiki/Lighttpd" target="_blank">Wikipedia - Lighttpd</a><br />
<br />
Since lighttpd does not support .htaccess files, most will find that they will need to install apache web server on their server. Good news is with kloxo, you can switch to Apache from inside the control panel (remember, the switch works for all the domains hosted inside your vps, you can't have some domains with apache and some with lighttpd):<br />
<br />
<ol type="1">
<li>1. login as 'admin'</li>
<li>2. click on the 'server tab'</li>
<li>3. on the box 'server linux' click on 'switch program'</li>
<li>4. make your choice for the web server you prefer</li>
<li>5. lxadmin will convert conf files appropriately and install apache automatically</li>
<li>6. wait a few minutes to let lxadmin do this and to restart the new server</li>
<li>7. you can check which http server is running choosing 'component info' in the 2nd box 'services' of the 'server home' page.</li></ol>
<br />
<br />
You might want to backup any existing data on your server prior to switching web server as a standard precaution measures.]]></description>
			<content:encoded><![CDATA[Kloxo, (formerly known as lxadmin) comes with Lighttpd preinstalled. For you who does not know what is lighttpd, please refer to this link: <a href="http://en.wikipedia.org/wiki/Lighttpd" target="_blank">Wikipedia - Lighttpd</a><br />
<br />
Since lighttpd does not support .htaccess files, most will find that they will need to install apache web server on their server. Good news is with kloxo, you can switch to Apache from inside the control panel (remember, the switch works for all the domains hosted inside your vps, you can't have some domains with apache and some with lighttpd):<br />
<br />
<ol type="1">
<li>1. login as 'admin'</li>
<li>2. click on the 'server tab'</li>
<li>3. on the box 'server linux' click on 'switch program'</li>
<li>4. make your choice for the web server you prefer</li>
<li>5. lxadmin will convert conf files appropriately and install apache automatically</li>
<li>6. wait a few minutes to let lxadmin do this and to restart the new server</li>
<li>7. you can check which http server is running choosing 'component info' in the 2nd box 'services' of the 'server home' page.</li></ol>
<br />
<br />
You might want to backup any existing data on your server prior to switching web server as a standard precaution measures.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How-To - cPanel Account Migration with No Root Access]]></title>
			<link>http://www.elevatedservers.net/forums/showthread.php?tid=10</link>
			<pubDate>Tue, 12 May 2009 10:20:17 -0700</pubDate>
			<guid isPermaLink="false">http://www.elevatedservers.net/forums/showthread.php?tid=10</guid>
			<description><![CDATA[This method is best suited those who don't have root access on their old server. Please be aware that the duration it takes for a backup to complete will vary depending on the size of that particular account and we all know FTP transfer will take longer time to complete as well.<br />
<br />
To start the tutorial, you will need:<br />
-cPanel on both servers<br />
-WHM with root access of the new server<br />
<br />
<span style="font-weight: bold;">Instructions:</span><br />
1. In your new server, log into WHM and create a new temporary account. You can name it anything you want but I recommend naming it into something easier to remember and distinguish like "backup", "transfer", "restore". Let's assume you've created an account named "backup". After account creation, please note the FTP details (address or IP, username, password)<br />
<br />
2. Log into your old server's cpanel. Go to the function <span style="font-weight: bold;">"Backup &gt;&gt; Generate/Download a Full Backup".</span><br />
<br />
3. Choose <span style="font-weight: bold;">"Remote FTP Server"</span> and fill in all necessary details which you note down earlier together with your email address.<br />
<br />
4. After you're done filling in all the required details, click on "<span style="font-weight: bold;">Generate Backup</span>". Like I mentioned above, this process might take a few minutes to a few hours depending on the size of the files. Rest assured, you should be receiving an email once it is complete.<br />
<br />
5. Assuming the transfer has been completed, SSH into your new server using root.<br />
<br />
6. Type in the following command:<br />
<span style="font-weight: bold;"><span style="font-style: italic;">"cd /home/backup/public_html"</span></span><br />
<br />
You should be inside public_html folder of your newly created account. Then, type in the following command:<br />
<br />
<span style="font-weight: bold;"><span style="font-style: italic;">ls</span></span><br />
<br />
You should see the tar.gz file of the account from the old server. If you're not seeing the backup file created earlier, please repeat the process again and checked all the details making sure they are correct.<br />
<br />
7. Now you need to move the backup to your /home/ directory for cpanel to detect and restore your accounts. Type in the following command:<br />
<br />
<span style="font-weight: bold;"><span style="font-style: italic;">mv backup_file_name /home/backup_file_name</span></span><br />
<br />
Make sure the file has been moved by typing the following 2 commands:<br />
<br />
<span style="font-weight: bold;"><span style="font-style: italic;">cd /home/</span></span><br />
<br />
<span style="font-weight: bold;"><span style="font-style: italic;">ls</span></span><br />
<br />
You should see the backup file here.<br />
<br />
8. Now, log into WHM on your new server and click on "<span style="font-weight: bold;">Backup &gt;&gt; Restore a Full Backup/cpmove file</span>". You should see WHM detects the backup file which you just moved earlier under the "<span style="font-weight: bold;">Possible cpmove archives found:</span>".<br />
<br />
9. Type in the account name in the text field in WHM, which is proceeded by "<span style="font-weight: bold;">Enter the username for the account you wish to restore:</span>" and click "<span style="font-weight: bold;">Restore</span>".<br />
<br />
This method is best used if you have less than 10 accounts to transfer. If you have more than 10, then it is advisable for you to use <span style="font-weight: bold;"><span style="font-style: italic;">"Copy multiple accounts/packages from another server"</span></span> option from your WHM.]]></description>
			<content:encoded><![CDATA[This method is best suited those who don't have root access on their old server. Please be aware that the duration it takes for a backup to complete will vary depending on the size of that particular account and we all know FTP transfer will take longer time to complete as well.<br />
<br />
To start the tutorial, you will need:<br />
-cPanel on both servers<br />
-WHM with root access of the new server<br />
<br />
<span style="font-weight: bold;">Instructions:</span><br />
1. In your new server, log into WHM and create a new temporary account. You can name it anything you want but I recommend naming it into something easier to remember and distinguish like "backup", "transfer", "restore". Let's assume you've created an account named "backup". After account creation, please note the FTP details (address or IP, username, password)<br />
<br />
2. Log into your old server's cpanel. Go to the function <span style="font-weight: bold;">"Backup &gt;&gt; Generate/Download a Full Backup".</span><br />
<br />
3. Choose <span style="font-weight: bold;">"Remote FTP Server"</span> and fill in all necessary details which you note down earlier together with your email address.<br />
<br />
4. After you're done filling in all the required details, click on "<span style="font-weight: bold;">Generate Backup</span>". Like I mentioned above, this process might take a few minutes to a few hours depending on the size of the files. Rest assured, you should be receiving an email once it is complete.<br />
<br />
5. Assuming the transfer has been completed, SSH into your new server using root.<br />
<br />
6. Type in the following command:<br />
<span style="font-weight: bold;"><span style="font-style: italic;">"cd /home/backup/public_html"</span></span><br />
<br />
You should be inside public_html folder of your newly created account. Then, type in the following command:<br />
<br />
<span style="font-weight: bold;"><span style="font-style: italic;">ls</span></span><br />
<br />
You should see the tar.gz file of the account from the old server. If you're not seeing the backup file created earlier, please repeat the process again and checked all the details making sure they are correct.<br />
<br />
7. Now you need to move the backup to your /home/ directory for cpanel to detect and restore your accounts. Type in the following command:<br />
<br />
<span style="font-weight: bold;"><span style="font-style: italic;">mv backup_file_name /home/backup_file_name</span></span><br />
<br />
Make sure the file has been moved by typing the following 2 commands:<br />
<br />
<span style="font-weight: bold;"><span style="font-style: italic;">cd /home/</span></span><br />
<br />
<span style="font-weight: bold;"><span style="font-style: italic;">ls</span></span><br />
<br />
You should see the backup file here.<br />
<br />
8. Now, log into WHM on your new server and click on "<span style="font-weight: bold;">Backup &gt;&gt; Restore a Full Backup/cpmove file</span>". You should see WHM detects the backup file which you just moved earlier under the "<span style="font-weight: bold;">Possible cpmove archives found:</span>".<br />
<br />
9. Type in the account name in the text field in WHM, which is proceeded by "<span style="font-weight: bold;">Enter the username for the account you wish to restore:</span>" and click "<span style="font-weight: bold;">Restore</span>".<br />
<br />
This method is best used if you have less than 10 accounts to transfer. If you have more than 10, then it is advisable for you to use <span style="font-weight: bold;"><span style="font-style: italic;">"Copy multiple accounts/packages from another server"</span></span> option from your WHM.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[The Advantages Of RVSkin]]></title>
			<link>http://www.elevatedservers.net/forums/showthread.php?tid=7</link>
			<pubDate>Fri, 08 May 2009 01:45:22 -0700</pubDate>
			<guid isPermaLink="false">http://www.elevatedservers.net/forums/showthread.php?tid=7</guid>
			<description><![CDATA[Did you wonder why does we offer RVSkin on all our reseller hosting plan?<br />
Taken from RVSkin site itself, RVSkin is actually the best choice to differentiate your hosting services, lesser support needed, which results in lower operating costs for your business.<br />
<br />
These are RVSkin features that you might find interesting. For latest features, please visit this link: <a href="http://www.rvskin.com/index.php?page=public/features" target="_blank">http://www.rvskin.com/index.php?page=public/features</a><br />
<br />
                              <br />
<ol type="1">
<li>languages<br />
<ul>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=1" target="_blank">default language</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=2" target="_blank">multi-lingual interface</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=3" target="_blank">message editor for both root and reseller</a><br />
</li></ul></li>
<li>feature manager<br />
<ul>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=4" target="_blank">admin layer and account layer</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=5" target="_blank">package feature manager</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=6" target="_blank">account feature manager</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=7" target="_blank">user feature manager</a>   <img src="http://www.rvskin.com/images/new.gif" border="0" alt="[Image: new.gif&#93;" /></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=8" target="_blank">webmail feature manager</a>   <img src="http://www.rvskin.com/images/new.gif" border="0" alt="[Image: new.gif&#93;" /></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=9" target="_blank">intelligent skin</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=10" target="_blank">default feature list</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=11" target="_blank">permission control </a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=12" target="_blank">features control for reseller and your reseller's clients</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=13" target="_blank">feature comparison for all your feature lists</a><br />
</li></ul></li>
<li>marketing tools<br />
<ul>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=14" target="_blank">upsale manager</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=15" target="_blank">sub-reseller system</a><br />
</li></ul></li>
<li>design and skin editor<br />
<ul>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=16" target="_blank">multi-theme design</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=17" target="_blank">easy navigation</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=18" target="_blank">add your own links inside rvskin (body links)</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=19" target="_blank">page editor</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=20" target="_blank">tutorial and reference manager</a><br />
</li></ul></li>
<li>branding<br />
<ul>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=21" target="_blank">logo</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=22" target="_blank">custom header</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=23" target="_blank">top links</a><br />
</li></ul></li>
<li>news and alert system<br />
<ul>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=24" target="_blank">full page news alert</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=25" target="_blank">multi-lingual news</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=26" target="_blank">full  page contact alert</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=27" target="_blank">disk usage and bandwidth usage alert</a><br />
</li></ul></li>
<li>integration<br />
<ul>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=28" target="_blank">subversion and trac integration</a>   <img src="http://www.rvskin.com/images/new.gif" border="0" alt="[Image: new.gif&#93;" /></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=29" target="_blank">fantastico integration</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=30" target="_blank">installatron integration</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=31" target="_blank">rvsitebuilder integration</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=32" target="_blank">asssp deluxe and asspx integration </a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=33" target="_blank">webmail integration such as roundcube</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=34" target="_blank">modernbill 4.1, 4.2, and 4.3  passwordless access integration</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=35" target="_blank">awbs passwordless access integration</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=36" target="_blank">server-wide virus and spam protection integration</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=37" target="_blank">cpanel plugin integration</a><br />
</li></ul></li>
<li>update and configuration management<br />
<ul>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=38" target="_blank">clustering system</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=39" target="_blank">debug information</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=40" target="_blank">silence login by admin</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=41" target="_blank">automatically update system</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=42" target="_blank">rollback</a><br />
</li></ul></li>
<li>other useful features<br />
<ul>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=43" target="_blank">email forwarder protection</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=44" target="_blank">default e-mail quota</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=45" target="_blank">e-mail account list tweak</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=46" target="_blank">enable mysql access host but invisible</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=47" target="_blank">php info</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=48" target="_blank">disable main ftp access</a>   <img src="http://www.rvskin.com/images/new.gif" border="0" alt="[Image: new.gif&#93;" /></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=49" target="_blank">limit the number of cron job end-user allows to enter</a>   <img src="http://www.rvskin.com/images/new.gif" border="0" alt="[Image: new.gif&#93;" /><br />
</li></ul>
<br />
</li></ol>
]]></description>
			<content:encoded><![CDATA[Did you wonder why does we offer RVSkin on all our reseller hosting plan?<br />
Taken from RVSkin site itself, RVSkin is actually the best choice to differentiate your hosting services, lesser support needed, which results in lower operating costs for your business.<br />
<br />
These are RVSkin features that you might find interesting. For latest features, please visit this link: <a href="http://www.rvskin.com/index.php?page=public/features" target="_blank">http://www.rvskin.com/index.php?page=public/features</a><br />
<br />
                              <br />
<ol type="1">
<li>languages<br />
<ul>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=1" target="_blank">default language</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=2" target="_blank">multi-lingual interface</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=3" target="_blank">message editor for both root and reseller</a><br />
</li></ul></li>
<li>feature manager<br />
<ul>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=4" target="_blank">admin layer and account layer</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=5" target="_blank">package feature manager</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=6" target="_blank">account feature manager</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=7" target="_blank">user feature manager</a>   <img src="http://www.rvskin.com/images/new.gif" border="0" alt="[Image: new.gif]" /></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=8" target="_blank">webmail feature manager</a>   <img src="http://www.rvskin.com/images/new.gif" border="0" alt="[Image: new.gif]" /></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=9" target="_blank">intelligent skin</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=10" target="_blank">default feature list</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=11" target="_blank">permission control </a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=12" target="_blank">features control for reseller and your reseller's clients</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=13" target="_blank">feature comparison for all your feature lists</a><br />
</li></ul></li>
<li>marketing tools<br />
<ul>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=14" target="_blank">upsale manager</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=15" target="_blank">sub-reseller system</a><br />
</li></ul></li>
<li>design and skin editor<br />
<ul>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=16" target="_blank">multi-theme design</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=17" target="_blank">easy navigation</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=18" target="_blank">add your own links inside rvskin (body links)</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=19" target="_blank">page editor</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=20" target="_blank">tutorial and reference manager</a><br />
</li></ul></li>
<li>branding<br />
<ul>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=21" target="_blank">logo</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=22" target="_blank">custom header</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=23" target="_blank">top links</a><br />
</li></ul></li>
<li>news and alert system<br />
<ul>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=24" target="_blank">full page news alert</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=25" target="_blank">multi-lingual news</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=26" target="_blank">full  page contact alert</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=27" target="_blank">disk usage and bandwidth usage alert</a><br />
</li></ul></li>
<li>integration<br />
<ul>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=28" target="_blank">subversion and trac integration</a>   <img src="http://www.rvskin.com/images/new.gif" border="0" alt="[Image: new.gif]" /></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=29" target="_blank">fantastico integration</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=30" target="_blank">installatron integration</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=31" target="_blank">rvsitebuilder integration</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=32" target="_blank">asssp deluxe and asspx integration </a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=33" target="_blank">webmail integration such as roundcube</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=34" target="_blank">modernbill 4.1, 4.2, and 4.3  passwordless access integration</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=35" target="_blank">awbs passwordless access integration</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=36" target="_blank">server-wide virus and spam protection integration</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=37" target="_blank">cpanel plugin integration</a><br />
</li></ul></li>
<li>update and configuration management<br />
<ul>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=38" target="_blank">clustering system</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=39" target="_blank">debug information</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=40" target="_blank">silence login by admin</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=41" target="_blank">automatically update system</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=42" target="_blank">rollback</a><br />
</li></ul></li>
<li>other useful features<br />
<ul>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=43" target="_blank">email forwarder protection</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=44" target="_blank">default e-mail quota</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=45" target="_blank">e-mail account list tweak</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=46" target="_blank">enable mysql access host but invisible</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=47" target="_blank">php info</a></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=48" target="_blank">disable main ftp access</a>   <img src="http://www.rvskin.com/images/new.gif" border="0" alt="[Image: new.gif]" /></li>
<li><a href="http://www.rvskin.com/features/framepopup.php?pageid=49" target="_blank">limit the number of cron job end-user allows to enter</a>   <img src="http://www.rvskin.com/images/new.gif" border="0" alt="[Image: new.gif]" /><br />
</li></ul>
<br />
</li></ol>
]]></content:encoded>
		</item>
	</channel>
</rss>