- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Migrating users/passwords from 11.0 trusted system...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2005 06:51 AM
10-21-2005 06:51 AM
Is there any way to move the user and group and password accounts from the old system running trusted systems to the new one??
Is it possible to turn off/disable trusted systems and then move all the files i need?
Thanks for any ideas.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2005 04:55 PM
10-21-2005 04:55 PM
Re: Migrating users/passwords from 11.0 trusted systems to 11iv2??
# /usr/lbin/tsconvert -r
you can also do it via # sam
Auditing and Security -> Audited Events -> Actions -> Unconvert the System.
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2005 06:08 PM
10-21-2005 06:08 PM
Re: Migrating users/passwords from 11.0 trusted systems to 11iv2??
/etc/passwd
/etc/group
/tcb/* (recursively with all subdirectories)
and
user home directories
to the new 11iV2 server then running
pwconv
should do the trick for you. Provided this new system is built as or converted to trusted prior to the copy from old server operation. There should not be a need for converting back to untrusted.
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2005 10:55 PM
10-21-2005 10:55 PM
SolutionIf you want to remain trusted in the new server, you can simply do the copy as per Mr. Burslan post.
I've done it several times from 10.20 and 11.00 to 11iv1, so I guess it will work for 11iv2 too. My steps usually are:
First, make a copy of /etc/passwd and /etc/group to ".sav" in the 11iv2 node.
Then, on the 11.00 box, do a tar as:
# tar cvf trusted.tar /etc/passwd /etc/group /tcb
Copy the "trusted.tar" file to the 11iv2 box and then:
# tar xvf trusted.tar
To be on the safe side, have two root sessions opened on the destination server. In case you find any problem, restore the previously saved /etc/passwd and /etc/group, and move /tcb to /tcb.sav
Regards,
Zigor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2005 09:03 AM
10-23-2005 09:03 AM
Re: Migrating users/passwords from 11.0 trusted systems to 11iv2??
So basically i need to enable trusted on the new server, then tar up the directories on the old server, move them to the new server and then untar it?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2005 04:26 PM
10-23-2005 04:26 PM
Re: Migrating users/passwords from 11.0 trusted systems to 11iv2??
Don't forget to save your original files to ".sav", and have several root sessions opened.
Regards,
Zigor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2005 01:31 PM
10-25-2005 01:31 PM
Re: Migrating users/passwords from 11.0 trusted systems to 11iv2??
thanks everyone.