<?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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Mass-Moving cPanel Accounts</title>
	<atom:link href="http://www.v-nessa.net/2007/10/22/mass-moving-cpanel-accounts/feed" rel="self" type="application/rss+xml" />
	<link>http://www.v-nessa.net/2007/10/22/mass-moving-cpanel-accounts</link>
	<description>pink is the new black</description>
	<lastBuildDate>Thu, 26 Jan 2012 17:17:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: LOG</title>
		<link>http://www.v-nessa.net/2007/10/22/mass-moving-cpanel-accounts/comment-page-1#comment-10942</link>
		<dc:creator>LOG</dc:creator>
		<pubDate>Wed, 16 Feb 2011 08:06:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.v-nessa.net/2007/10/22/mass-moving-cpanel-accounts/#comment-10942</guid>
		<description>Thanks for the great script. I tried a PHP script before and can&#039;t get it to work.
The bash script works great</description>
		<content:encoded><![CDATA[<p>Thanks for the great script. I tried a PHP script before and can&#8217;t get it to work.<br />
The bash script works great</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Allan</title>
		<link>http://www.v-nessa.net/2007/10/22/mass-moving-cpanel-accounts/comment-page-1#comment-10872</link>
		<dc:creator>Allan</dc:creator>
		<pubDate>Tue, 30 Nov 2010 06:42:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.v-nessa.net/2007/10/22/mass-moving-cpanel-accounts/#comment-10872</guid>
		<description>Crap...  Not sure what happened there... After the /scripts/pkgacct line... should have:

&lt;ulist
scp -r /home/cpmove* root@server:/home/
scp -r /home/ulist* root@server:/home/</description>
		<content:encoded><![CDATA[<p>Crap&#8230;  Not sure what happened there&#8230; After the /scripts/pkgacct line&#8230; should have:</p>
<p>&lt;ulist<br />
scp -r /home/cpmove* root@server:/home/<br />
scp -r /home/ulist* root@server:/home/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Allan</title>
		<link>http://www.v-nessa.net/2007/10/22/mass-moving-cpanel-accounts/comment-page-1#comment-10871</link>
		<dc:creator>Allan</dc:creator>
		<pubDate>Tue, 30 Nov 2010 06:40:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.v-nessa.net/2007/10/22/mass-moving-cpanel-accounts/#comment-10871</guid>
		<description>I know this is an old post, but I recommend something more like this to save space/server load considerations:

#! /bin/bash
ls -1 /var/cpanel/users/&#124;sed &#039;1,2d&#039;&gt;ulist
while read user; do /scripts/pkgacct --skiphomedir $user; done email.txt
mail -vv -s &quot;Account backups done&quot; your@emailaddress.com &lt; email.txt

Then on the other server..

/scripts/restorepkg $user
while read user; rsync -a --progress -e &#039;ssh&#039; root@server:/home/$user/ /home/$user/;done&lt;ulist</description>
		<content:encoded><![CDATA[<p>I know this is an old post, but I recommend something more like this to save space/server load considerations:</p>
<p>#! /bin/bash<br />
ls -1 /var/cpanel/users/|sed &#8217;1,2d&#8217;&gt;ulist<br />
while read user; do /scripts/pkgacct &#8211;skiphomedir $user; done email.txt<br />
mail -vv -s &#8220;Account backups done&#8221; <a href="mailto:your@emailaddress.com">your@emailaddress.com</a> &lt; email.txt</p>
<p>Then on the other server..</p>
<p>/scripts/restorepkg $user<br />
while read user; rsync -a &#8211;progress -e &#039;ssh&#039; root@server:/home/$user/ /home/$user/;done&lt;ulist</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arvkova</title>
		<link>http://www.v-nessa.net/2007/10/22/mass-moving-cpanel-accounts/comment-page-1#comment-10867</link>
		<dc:creator>Arvkova</dc:creator>
		<pubDate>Wed, 24 Nov 2010 07:20:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.v-nessa.net/2007/10/22/mass-moving-cpanel-accounts/#comment-10867</guid>
		<description>Thanks for the nice article. Saved me loads of time ^_^</description>
		<content:encoded><![CDATA[<p>Thanks for the nice article. Saved me loads of time ^_^</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://www.v-nessa.net/2007/10/22/mass-moving-cpanel-accounts/comment-page-1#comment-10798</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Sat, 18 Sep 2010 20:35:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.v-nessa.net/2007/10/22/mass-moving-cpanel-accounts/#comment-10798</guid>
		<description>You can set the backup path in case you need it (i was out of space on that drive)

change the first line with somethink like this

for i in `cat users.txt`; do /scripts/pkgacct $i /your_backup_path/; done</description>
		<content:encoded><![CDATA[<p>You can set the backup path in case you need it (i was out of space on that drive)</p>
<p>change the first line with somethink like this</p>
<p>for i in `cat users.txt`; do /scripts/pkgacct $i /your_backup_path/; done</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bo0</title>
		<link>http://www.v-nessa.net/2007/10/22/mass-moving-cpanel-accounts/comment-page-1#comment-9391</link>
		<dc:creator>Bo0</dc:creator>
		<pubDate>Sun, 22 Jun 2008 02:30:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.v-nessa.net/2007/10/22/mass-moving-cpanel-accounts/#comment-9391</guid>
		<description>Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nessa</title>
		<link>http://www.v-nessa.net/2007/10/22/mass-moving-cpanel-accounts/comment-page-1#comment-9324</link>
		<dc:creator>Nessa</dc:creator>
		<pubDate>Mon, 26 May 2008 17:44:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.v-nessa.net/2007/10/22/mass-moving-cpanel-accounts/#comment-9324</guid>
		<description>It depends...did you do the system backup from WHM&#039;s backup section?  If so usually it will be in /cpbackup , but you&#039;d have to check the configuration section to see what folder you had them run in.</description>
		<content:encoded><![CDATA[<p>It depends&#8230;did you do the system backup from WHM&#8217;s backup section?  If so usually it will be in /cpbackup , but you&#8217;d have to check the configuration section to see what folder you had them run in.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://www.v-nessa.net/2007/10/22/mass-moving-cpanel-accounts/comment-page-1#comment-9320</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Sun, 25 May 2008 18:22:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.v-nessa.net/2007/10/22/mass-moving-cpanel-accounts/#comment-9320</guid>
		<description>Do you know if it is possible to get a cpmove style backup from a full system backup, but that is not running anymore?
Can you point me to any resources that will help me?
Thanks!</description>
		<content:encoded><![CDATA[<p>Do you know if it is possible to get a cpmove style backup from a full system backup, but that is not running anymore?<br />
Can you point me to any resources that will help me?<br />
Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nessa</title>
		<link>http://www.v-nessa.net/2007/10/22/mass-moving-cpanel-accounts/comment-page-1#comment-9292</link>
		<dc:creator>Nessa</dc:creator>
		<pubDate>Sun, 18 May 2008 04:02:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.v-nessa.net/2007/10/22/mass-moving-cpanel-accounts/#comment-9292</guid>
		<description>when you run a full cpanel backup, everything in the account is stored in the backup file including the email, databases, stats, logs, files, forwards, etc.  In the move process outlined in my post you are using the /scripts/pkgacct script, which essentially is the same as running a full backup through cpanel only the filename is different.</description>
		<content:encoded><![CDATA[<p>when you run a full cpanel backup, everything in the account is stored in the backup file including the email, databases, stats, logs, files, forwards, etc.  In the move process outlined in my post you are using the /scripts/pkgacct script, which essentially is the same as running a full backup through cpanel only the filename is different.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Booblla</title>
		<link>http://www.v-nessa.net/2007/10/22/mass-moving-cpanel-accounts/comment-page-1#comment-9287</link>
		<dc:creator>Booblla</dc:creator>
		<pubDate>Sat, 17 May 2008 10:38:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.v-nessa.net/2007/10/22/mass-moving-cpanel-accounts/#comment-9287</guid>
		<description>This might be a stupid question, but does this script also copy email accounts as well and if not. Is their a way to do it?</description>
		<content:encoded><![CDATA[<p>This might be a stupid question, but does this script also copy email accounts as well and if not. Is their a way to do it?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

