Unsolved
This post is more than 5 years old
1 Message
0
793
September 21st, 2010 14:00
How do I name a replica when creating with the RM GUI?
I have replicas that are created via RM jobs. However I need to delete the replicas via the rmcli command line tool. The unmount-replica command can take the replica name as an argument but I can't figure out how to name the replica in the first place when creating via the GUI.
Any help is appreciated.
Thanks!



radag87
1 Message
0
April 4th, 2012 21:00
I don't know if you still care about this, but have you tried the edit-replica option in rmcli. I do something like this
if-not connect host=myhost port=65432 then exit 1
if-not login user=myuser password=mypass then exit 2
if-not run-job name=mycopyjob appset=myappset(Administrator) then exit 3
if-not edit-replica position=last appset=myappset(Administrator) display-name=myuniquename then exit 4
exit 0
Hope this helps. BTW I am using 5.4.1 in case that matters