Go Back   HostGator Peer Support Forums > Public Forums > Pre-Sales Questions

Notices

Reply
 
Thread Tools
  #1  
Old 03-31-2007, 06:28 PM
mr.windows mr.windows is offline
Hatchling Croc
 
Join Date: Mar 2007
Posts: 43
Default re-seller to dedicated

if i were to move to a dedicated from a re-seller would hostgator move all my files?
__________________
------------------------------------------------

Jordan Anderson

http://www.realm-x-hosting.com
http://www.realm-x-forums.com
Reply With Quote
  #2  
Old 03-31-2007, 07:22 PM
PsiPro PsiPro is offline
King Croc
 
Join Date: Nov 2005
Posts: 812
Default Re: re-seller to dedicated

Yep yep, just use the reseller account transfer form.
Reply With Quote
  #3  
Old 04-01-2007, 08:45 AM
Serra's Avatar
Serra Serra is offline
Veteran Croc
 
Join Date: Feb 2005
Location: Orange Park, FL
Posts: 5,073
Default Re: re-seller to dedicated

The transfer isn't instantaneous though. Allow them a day or three to actually do the transfer. When upgrading to a dedicated, all you really need to do is change your private nameserver setup.
__________________
Six stages of Dedi Ownership

Fashionable broken link
image included
Reply With Quote
  #4  
Old 04-01-2007, 09:29 AM
Sam Sam is offline
Emperor Croc
 
Join Date: Jan 2007
Location: /bin/false
Posts: 3,057
Default Re: re-seller to dedicated

and make sure you read Serra's how to guide http://forums.hostgator.com/showthread.php?t=9291
Reply With Quote
  #5  
Old 04-01-2007, 11:09 AM
Serra's Avatar
Serra Serra is offline
Veteran Croc
 
Join Date: Feb 2005
Location: Orange Park, FL
Posts: 5,073
Default Re: re-seller to dedicated

Quote:
Originally Posted by _Sam_ View Post
and make sure you read Serra's how to guide http://forums.hostgator.com/showthread.php?t=9291
Yes, all they NEED to do is set the private nameservers.... what they SHOULD do is all detailed in that thread!
__________________
Six stages of Dedi Ownership

Fashionable broken link
image included
Reply With Quote
  #6  
Old 04-01-2007, 02:31 PM
chaloupe chaloupe is offline
King Croc
 
Join Date: Nov 2004
Location: Dieppe, New-Brunswick, Canada
Posts: 1,427
Default Re: re-seller to dedicated

I've used that thread also this weekend to make sure I had done everything since I was moving all my accounts from the old server to a new one here at hostgator. I wouldn't want to miss something and get the server not to work after DNS change!

Thanks again Serra for the thread!
__________________
Jean Boudreau - IT for local businesses
It's all about automation!
Any data backup of your company?

Reply With Quote
  #7  
Old 04-02-2007, 06:34 AM
kmaw's Avatar
kmaw kmaw is offline
Emperor Croc
 
Join Date: Mar 2005
Location: Ontario, Canada
Posts: 1,924
Default Re: re-seller to dedicated

Make sure you check your DNS afterward too. I had ns1 and ns2 records still pointing to the old server IP afterward, and it took me a day or two to figure it out.
Reply With Quote
  #8  
Old 04-02-2007, 08:10 AM
Serra's Avatar
Serra Serra is offline
Veteran Croc
 
Join Date: Feb 2005
Location: Orange Park, FL
Posts: 5,073
Default Re: re-seller to dedicated

I have a script:

Code:
#!/usr/bin/perl
# cPlicensing.net - scripts         Copyright(c) 2006 cPlicensing.net.
#                 All rights Reserved.
# support@cPlicensing.net        http://cPlicensing.net
# Unauthorized copying is prohibited
#Version: 0.03
#
#+CHANGE LOG (YYYY-MM-DD)
#-v0.3 :: 2006-03-15 :: Changed script to no longer use accounting file, how pulls csv from whostmgr binary
#-v0.2 :: 2004-02-22 :: Now will show a catagory for domains that point to the correct ip as well.

use strict;
use warnings;
use Socket;

$|++;
$ENV{'REMOTE_USER'} = 'root';

print "Building Interface IP List...";
my %localips;
foreach(qx(/sbin/ifconfig | /bin/grep inet | /bin/cut -d: -f2 | /bin/awk '{print
 \$1 }')) {
        chomp;
        $localips{$_} = $_;
}
print "Success\n";

print "Checking /etc/resolv.conf\n";
if ( -f "/etc/resolv.conf" ) {
        open RESOLVCONF, "</etc/resolv.conf";
        while(<RESOLVCONF>) {
                chomp;
                if(/nameserver/) {
                        my(undef,$nsip) = split(/\s+/,$_);
                        if($localips{$nsip}) {
                                print "Warning!!! IP Address $nsip was found in
your /etc/resolv.conf but that ip is assigned to a local interface on this server.  It is recommended that you remove the entry and replace it with a external nameserver (ex: your Data Centers Resolvers).  Leaving the ip may result in this
script giving your wrong information\n\n";
                                print "Press CTRL+C to exit or press enter to continue\n";
                                <STDIN>;
                        }
                }
        }
        close RESOLVCONF;
}

print "Retreiving CSV from whostmgr...";
my %csv;
foreach(qx(/usr/local/cpanel/whostmgr/bin/whostmgr fetchcsv)) {
        chomp;
        next unless /^,/;
        my(undef,$domain,$ip,$user,undef) = split(",", $_, 5);
        next unless $domain and $ip and $user;
        $ip =~ s/:443//;
        $csv{$user}{domain} = $domain;
        $csv{$user}{ip} = $ip;
}
print "Success\n";

print "Domain to IP check...";
my (%fr,%ri,%wi);
foreach (keys %csv) {
        print ".";
        my $iaddr = gethostbyname($csv{$_}{domain});
        unless ( $iaddr ) {
                $fr{$_} = 1;
                next;
        }
        if ( inet_ntoa( $iaddr ) eq $csv{$_}{ip} ) {
                $ri{$_} = 1;
                next;
        } else {
                $wi{$_} = 1;
        }
}
print "Done\n";

print "Displaying Results...\n";

print "\n\n";
print "--------------------------------------------\n";
print "-  LIST OF DOMAINS THAT POINT TO WRONG IP  -\n";
print "============================================\n";

foreach(keys %wi) {
        print "--> ".$csv{$_}{domain}."\n";
}


print "\n\n";
print "--------------------------------------------\n";
print "-  LIST OF DOMAINS THAT FAILED TO RESOLVE  -\n";
print "============================================\n";

foreach(keys %fr) {
        print "--> ".$csv{$_}{domain}."\n";
}

print "\n\n";
print "--------------------------------------------\n";
print "- LIST OF DOMAINS THAT POINT TO CORRECT IP -\n";
print "============================================\n";

foreach(keys %ri) {
        print "--> ".$csv{$_}{domain}."\n";
}

print "\n\n";
print "--------------------------------------------\n";
print "-                   SUMMERY                -\n";
print "============================================\n";
print "-->PRIMARY DOMAINS FOUND ON SERVER..................".scalar(keys %csv)."\n";
print "-->PRIMARY DOMAINS THAT RESOLVE TO THE CORRECT IP...".scalar(keys %ri)."\n";
print "-->PRIMARY DOMAINS THAT DONT RESOLVE TO A IP........".scalar(keys %fr)."\n";
print "-->PRIMARY DOMAINS THAT POINT TO WRONG IP...........".scalar(keys %wi)."\n";
print "\n\n";
That should show where domains are pointing
__________________
Six stages of Dedi Ownership

Fashionable broken link
image included
Reply With Quote
  #9  
Old 04-02-2007, 08:43 PM
JohnnyH JohnnyH is offline
Hatchling Croc
 
Join Date: Aug 2006
Location: Louisville, Kentucky
Posts: 3
Default Re: re-seller to dedicated

Why cant I read Serra's guide http://forums.hostgator.com/showthread.php?t=9291
Reply With Quote
  #10  
Old 04-02-2007, 09:07 PM
kmaw's Avatar
kmaw kmaw is offline
Emperor Croc
 
Join Date: Mar 2005
Location: Ontario, Canada
Posts: 1,924
Default Re: re-seller to dedicated

Quote:
Originally Posted by JohnnyH View Post
You're still awaiting activation in the forums... PM GatorJay and tell him to make sure you get approved ASAP.....
Reply With Quote
  #11  
Old 04-03-2007, 07:50 AM
Serra's Avatar
Serra Serra is offline
Veteran Croc
 
Join Date: Feb 2005
Location: Orange Park, FL
Posts: 5,073
Default Re: re-seller to dedicated

Quote:
Originally Posted by kmaw View Post
You're still awaiting activation in the forums... PM GatorJay and tell him to make sure you get approved ASAP.....
or contacting chat support and pitching a major *****ing fest seems to also be effective.
__________________
Six stages of Dedi Ownership

Fashionable broken link
image included
Reply With Quote
  #12  
Old 04-03-2007, 12:49 PM
slapshotw's Avatar
slapshotw slapshotw is offline
Veteran Croc
 
Join Date: Jun 2006
Posts: 5,164
Default Re: re-seller to dedicated

Quote:
Originally Posted by Serra View Post
or contacting chat support and pitching a major *****ing fest seems to also be effective.
Serra please stop making fun of him
Serra please stop making fun of him
Serra please stop making fun of him
Serra please stop making fun of him
Serra please stop making fun of him
Serra please stop making fun of him

Serra I need to speak to your manager NOW.
__________________
Follow me on Twitter! http://twitter.com/mrw
Reply With Quote
Reply

Bookmarks

Thread Tools

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

All times are GMT -5. The time now is 02:54 AM.