hosted by liquidweb


Go Back   Web Hosting Talk : Web Hosting Main Forums : Hosting Security and Technology : Transfer over 300+ accounts from cpanel to cpanel help
Reply

Hosting Security and Technology Configuring and optimizing web hosting servers and operating systems, developing administration scripts, building servers, protecting against hackers, and general security (SSL certificates, etc.)
Forum Jump

Transfer over 300+ accounts from cpanel to cpanel help

Reply Post New Thread In Hosting Security and Technology Subscription
 
Send news tip View All Posts Thread Tools Search this Thread Display Modes
  #1  
Old 04-15-2004, 12:20 PM
TopHostSupport TopHostSupport is offline
Web Hosting Master
 
Join Date: Apr 2003
Location: New Jersey USA
Posts: 898

Transfer over 300+ accounts from cpanel to cpanel help


I've used the WHM transfer accounts from server to server but had a nightmare when alot of the accounts transfer add-on domains and sub-domains stop working.

Does anyone know of a script that utilizes /scripts/pkgacct username that can run and create all of them and then I can download all of the backups or the script will send to the other server?

Of course I could do /scripts/pkgacct username but I need this done in the next 24 hours and won't have time to do each one individually.

Your help is very appreciated.

Reply With Quote


Sponsored Links
  #2  
Old 04-15-2004, 12:29 PM
ymfm ymfm is offline
WHT Addict
 
Join Date: Feb 2003
Posts: 105
I moved 800 accounts and I had a similar problem.
The addons and parked domains remained pointing to the old server.
I had to delete one by one and recreate all the parked an addons, because I didīt find any scripts to fix.

Reply With Quote
  #3  
Old 04-15-2004, 12:41 PM
rghf rghf is offline
Web Hosting Master
 
Join Date: Jun 2003
Location: UK
Posts: 6,566
We do something like the following. From the shell

for a in /home* ; do
cd $a
for i in * ; do

/scripts/pkgacct $i

done
done

This will just step through every user and make the pkgacct

The you can use something similar to restore them

Rus

__________________
Rus Foster - Managing Director
VPS.net - Cloud Hosting At Its Finest -21 locations and growing!
VPNHQ - Come get yourself a lovely VPN

Reply With Quote
Sponsored Links
  #4  
Old 04-15-2004, 12:42 PM
TopHostSupport TopHostSupport is offline
Web Hosting Master
 
Join Date: Apr 2003
Location: New Jersey USA
Posts: 898
Rus,

Are you saying running this in shell:

/scripts/pkgacct $i

Will create the cpbackup files for all accounts or just the ones starting with I?

Reply With Quote
  #5  
Old 04-15-2004, 12:45 PM
rghf rghf is offline
Web Hosting Master
 
Join Date: Jun 2003
Location: UK
Posts: 6,566
You need to do it in the for loop as that will make $i become every user name. You could also do

cut -d\: -f1 /etc/passwd | while read account ; do /scripts/pkgacct $account ; done

Basic simple shell script

Rus

__________________
Rus Foster - Managing Director
VPS.net - Cloud Hosting At Its Finest -21 locations and growing!
VPNHQ - Come get yourself a lovely VPN

Reply With Quote
  #6  
Old 04-16-2004, 12:41 AM
Bashar Bashar is offline
Retired Moderator
 
Join Date: Jul 2002
Location: Kuwait
Posts: 10,572
this will mess things up which will read system users.

try for accounts in `ls /var/cpanel/users` ; do /scripts/pkgacct $accounts ; done

this will create cpmove-login.tar.gz in /home for all logins where u can move them to the second server into /home then /scripts/restorepkg $LOGIN

replace $LOGIN with the login u want to restore

to automate the restoration put a text file in /home/list.txt including all accounts names something like ls /var/cpanel/users > /home/list.txt (on the old account) and move it to the new account and do
for accounts in `cat /home/list.txt`; do /scripts/restorepkg $accounts ; done

make your self cup of tea and wait

__________________
Bashar Al-Abdulhadi - KuwaitNET Internet Services Serving customers since 1997
Kuwait's First Webhosting and Domain Registration provider - an ICANN Accredited Registrar

Twitter: Bashar Al-Abdulhadi

Reply With Quote
  #7  
Old 04-16-2004, 12:45 AM
Geek3 Geek3 is offline
Web Hosting Master
 
Join Date: Aug 2002
Posts: 636
Wait... are you saying you already did the move? Addon domains have nothing to do with rebatching them again for a download. This will only duplicate the problem. The problem consists in the httpd.conf file and I can point you right to the problem. All it takes is about 20 minutes to learn the technique and you can fix the problem and avoid transfering everything over again... that is just a mess and, again, will result in the same results.

Contact me at admin@ecphosting.net for more information.

__________________
Geek 3 Web Hosting & Gainesville Computer Repair
Hosting, Enom and Computer Repair Services


Reply With Quote
  #8  
Old 04-16-2004, 06:53 AM
illum illum is offline
Newbie
 
Join Date: Apr 2004
Posts: 8
My solution

I had similar problem in the past.

All I did to solve this problem was to update all zone files on the new server that had the old server IP in them.

It was just a simple script I wrote, it looked up all zone files (*.db) in the /var/named directory, looked for any with old server IP addresses in them and then replaced them with new server IP address - worked fine for me.

I wouldn't re-add domains manually from Cpanel - I had a client try to do this and it stuffed up his sites - I had to edit httpd.conf to remove what he did.


Last edited by illum; 04-16-2004 at 06:58 AM.
Reply With Quote
  #9  
Old 04-16-2004, 08:30 AM
TopHostSupport TopHostSupport is offline
Web Hosting Master
 
Join Date: Apr 2003
Location: New Jersey USA
Posts: 898
Quote:
Originally posted by EcpHosting
Wait... are you saying you already did the move? Addon domains have nothing to do with rebatching them again for a download. This will only duplicate the problem. The problem consists in the httpd.conf file and I can point you right to the problem. All it takes is about 20 minutes to learn the technique and you can fix the problem and avoid transfering everything over again... that is just a mess and, again, will result in the same results.

Contact me at admin@ecphosting.net for more information.
Hey Bud,

I haven't moved them yet. Basically this is the mess I have.

I took 3 servers and combined them into one xeon server. I switch to a new datacenter taking the word from a friend and it has been a nightmare. Server connection is crap and other issues arose.

I now have a xeon at The Planet and need to move the 300 clients from the old xeon to the new xeon. When I first moved all the clients from all 3 servers to one, I used WHM move script and had serveral issues with missing SQL databases and add-ons not working.

What I need now is a way to move the clients backups from one server to the other and have the minimum amount of troubles.

Reply With Quote
  #10  
Old 04-16-2004, 08:32 AM
TopHostSupport TopHostSupport is offline
Web Hosting Master
 
Join Date: Apr 2003
Location: New Jersey USA
Posts: 898
It looks like since I have backups on a backup drive I can do ths and move all content within the backup drive to the home folder on the new server?


scp -r user@remote-computer:/home /backup

From what I understand of SCP that will move all accounts from the backup folder on the old server to the /home folder on the new server.

Is that correct?

Reply With Quote
  #11  
Old 04-16-2004, 11:02 AM
Bashar Bashar is offline
Retired Moderator
 
Join Date: Jul 2002
Location: Kuwait
Posts: 10,572
you will miss so many required configuration files located in /var/cpanel /etc etc..

unless u move home dirs then delete home dirs and move accounts from WHM which will make it smaller to move.

__________________
Bashar Al-Abdulhadi - KuwaitNET Internet Services Serving customers since 1997
Kuwait's First Webhosting and Domain Registration provider - an ICANN Accredited Registrar

Twitter: Bashar Al-Abdulhadi

Reply With Quote
  #12  
Old 04-16-2004, 11:37 AM
TopHostSupport TopHostSupport is offline
Web Hosting Master
 
Join Date: Apr 2003
Location: New Jersey USA
Posts: 898
I'm not concern about server config files. Just accounts. The new server has already been config.

Reply With Quote
  #13  
Old 04-16-2004, 12:34 PM
MattF MattF is offline
Web Hosting Master
 
Join Date: Nov 2000
Location: UK
Posts: 2,721
I had the nightmare too it, it setup the VirtualHost entry partially since you create a sub-domain when you create an add-on domain, however the restore did not add

ServerAlias real-addon-domain.com www.real-addon-domain.com

Boy that was fun! I email Nick about it in '03 and he said it was fixed, but not been able to test it yet.

__________________
Matt Freeman - Reassuringly cynical and controversial - @nonuby

Reply With Quote
  #14  
Old 04-16-2004, 12:43 PM
TopHostSupport TopHostSupport is offline
Web Hosting Master
 
Join Date: Apr 2003
Location: New Jersey USA
Posts: 898
Well I guess we will see if Nick fixed it very soon.

Reply With Quote
  #15  
Old 04-16-2004, 01:48 PM
John[H4Y] John[H4Y] is offline
Nose runs, feet smell?
 
Join Date: Feb 2002
Location: Vestal, NY
Posts: 1,343
Quote:
Originally posted by MattF
I had the nightmare too it, it setup the VirtualHost entry partially since you create a sub-domain when you create an add-on domain, however the restore did not add

ServerAlias real-addon-domain.com www.real-addon-domain.com

Boy that was fun! I email Nick about it in '03 and he said it was fixed, but not been able to test it yet.
This problem does appear fixed. I told Nick about it a while back as well and it was news to him at that point!

__________________
H4Y Technologies LLC Check out our new picture gallery!
"Smarter, Cheaper, Faster" - SMB, Reseller, VDS, Dedicated, Colo hosting done right.

Los Angeles, CA (Peer 1) ZERO DOWNTIME and Scranton, PA 99.9% Uptime Dedicated and Colo.
**http://h4y.us**
Voice: (866)435-5642. *** Email: askus at host4yourself d0t com

Reply With Quote
Reply

Related posts from TheWhir.com
Title Type Date Posted
cPanel Addresses User Concerns of Transfer and Backup Restore System Security Web Hosting News 2013-05-22 14:44:17
Web Hosting Control Panel cPanel and WHM Version 11.32 Adds Features, Fixes Web Hosting News 2012-04-08 11:51:35
cPanel Launches Version 11.32 of Control Panel and Web Host Manager Web Hosting News 2012-02-15 12:46:33
Control Panel cPanel Launches New Apache Configuration Script Web Hosting News 2011-12-28 19:41:39
cPanel to Launch Certification Program at cPanel Conference 2011 Web Hosting News 2011-09-21 18:15:42


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes
Postbit Selector

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump
Login:
Log in with your username and password
Username:
Password:



Forgot Password?
Advertisement:
Web Hosting News:



 

X

Welcome to WebHostingTalk.com

Create your username to jump into the discussion!

WebHostingTalk.com is the largest, most influentual web hosting community on the Internet. Join us by filling in the form below.


(4 digit year)

Already a member?