Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Is there a way to move user accounts to a new server?

Status
Not open for further replies.

madhermit

IS-IT--Management
Sep 14, 2004
1
US
The current server is a D350 class with HP-UX v10.x. The new server is an HP r3410 with HP-UX v11i. I need to move the user accounts from the current server to the new server.

Thanks in advance.
 
You can test this.... When I moved from box a to box b, we would copy over the /etc/passwd and /etc/group files.

of course, first copy the original as a backup:
cp -p passwd passwd.org
cp -p group group.org

rcp -p A:/etc/passwd /etc/passwd.new
rcp -p A:/etc/group /etc/group.new

cp -p passwd.new passwd
cp -p group.new group
 
you should replicate the "/home" folders too (or the home directoies, whenever they are)...

Cheers.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top