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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Legato Client Rename

Status
Not open for further replies.

sallender

IS-IT--Management
Mar 27, 2006
20
0
0
US
I need a procedure that shows how to rename a client for Networker Server on Unix. I have found a procedure for windows server, but I couldn't make it work for unix.

I have a client named "client"

I want to rename it "clientbk" and keep the same client id.

Anyone?
 
Got a doc off of EMC Powerlink.

1. On the NetWorker Server run the mminfo query below to get the client ID, and copy it in a safe place (the clientid is the second field of the output).

# mminfo -av -r client,clientid | sort | uniq

2. Delete the client resource for client "client".

3. Shutdown NetWorker services.

4. Rename /nsr/mm to /nsr/mm.old:

# mv /nsr/mm /nsr/mm.old

5. Restart the NetWorker services.

6. Create a client with new name (clientbk) and use the old client name's (client) client ID (the one that been supplied in the mminfo output in step 1), and make sure that the older client ID is specified in the "Globals 1 of 2" tab.

7. Shutdown NetWorker services again.

8. Check the /nsr/index directoy, and if you find an index folder with the new name (clientbk), rename it to any other name.

9. Rename /nsr/index/(client) to /nsr/index/(clientbk)

# mv /nsr/index/(old_client_name) /nsr/index/(new_client_name)

10. Remove the newly created /nsr/mm.

# rm -rf /nsr/mm

11. Rename /nsr/mm.old back to /nsr/mm

# mv /nsr/mm.old /nsr/mm

12. Start NetWorker services again and test a backup for the renamed client.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top