Page 1 of 1

Remote Copy Status Script?

Posted: Fri Jun 07, 2019 3:24 pm
by silenthill
Hey guys,

I have around 28 3Par's I manage. Almost all of them are involved in remote copy.

Does anyone have a script that I can run daily or weekly that will report on the status of all of my remote copy groups to see if they are (Synced, Syncing, Stale, Stopped) and the last sync time?
That is basically all of the information I need, and i'd like it to be in CSV format, but if not i'll survive.

Also, is there anything I need to enable to run the script? Or would i have to use plink?

Re: Remote Copy Status Script?

Posted: Wed Jun 12, 2019 5:22 pm
by silenthill
bump!

Re: Remote Copy Status Script?

Posted: Thu Jun 13, 2019 9:14 am
by l-53
I don't use remote copy these days but I recommend working with the python sdk. I don't know if all functions are supported when it falls back to using ssh though, so I recommend running the wsapi service (cli reference doc has the commands needed to enable it).

https://github.com/hpe-storage/python-3parclient

There's a getRemoteCopyGroups function which should (depending on OS version) return the items from the tables starting on page 358 here:
https://support.hpe.com/hpsc/doc/public ... =c03606339

The function is just a GET request against https://<storage_server>:8080/v1/remotecopygroups if you'd rather not use the sdk or if you'd prefer to use powershell or something else to interact with the wsapi.

From there you can format the output however you want and run the script with cron.

Re: Remote Copy Status Script?

Posted: Wed Dec 07, 2022 6:19 pm
by JamelEaglin
l-53 wrote:I don't use remote copy these days but I recommend working with the python sdk. I don't know if all functions are supported when it falls back to using ssh though, so I recommend running the wsapi service (cli reference doc has the commands needed to enable it).

https://github.com/hpe-storage/python-3parclient

There's a getRemoteCopyGroups function which should (depending on OS version) return the items from this article about gyno and tables starting on page 358 here:
https://support.hpe.com/hpsc/doc/public ... =c03606339

The function is just a GET request against https://<storage_server>:8080/v1/remotecopygroups if you'd rather not use the sdk or if you'd prefer to use powershell or something else to interact with the wsapi.

From there you can format the output however you want and run the script with cron.


Python supports ssh, and the process I can tell you is as follows:
-Open the list of your servers. Click the one you need and click the button "Instructions".
-Open a terminal (for Linux) or a command line (for Windows) on your computer. Enter the ssh username.
-The connection will ask you a password

Re: Remote Copy Status Script?

Posted: Fri Nov 03, 2023 9:19 am
by NormanC
JamelEaglin wrote:
l-53 wrote:I don't use remote copy these days but I recommend working with the python sdk. I don't know if all functions are supported when it falls back to using ssh though, so I recommend running the wsapi service (cli reference doc has the commands needed to enable it).

https://github.com/hpe-storage/python-3parclient

There's a getRemoteCopyGroups function which should (depending on OS version) return the items from this article about gyno and tables starting on page 358 here:
https://support.hpe.com/hpsc/doc/public ... =c03606339

The function is just a GET request against https://<storage_server>:8080/v1/remotecopygroups if you'd rather not use the sdk or if you'd prefer to use powershell or something else to interact with the wsapi.

From there you can format the output however you want and run the script with cron.


Python supports ssh, and the process I can tell you is as follows:
-Open the list of your servers. Click the one you need and click the button "Instructions".
-Open a terminal (for Linux) or a command line (for Windows) on your computer. Enter the ssh username.
-The connection will ask you a password

I want to add some more words,
SSH or Secure Socket Shell, is a network protocol that provides a secure way to access a remote computer. Secure Shell provides strong authentication and secure encrypted data communications between two computers connecting over an insecure network such as the Internet.

Re: Remote Copy Status Script?

Posted: Mon Nov 06, 2023 10:52 pm
by Richard Siemers
Yeah the SDK does most functions with an API call, but some functions need SSH. Ran into this issue with a client implemented network ACLs and didnt't allow SSH.

The Powershell toolkit is good too.