- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: rmesh command
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-18-2005 04:28 PM
10-18-2005 04:28 PM
I am trying to run the following command remotely from serverA to serverB in a script.
Running local on both nodes is fine using the command below
#/opt/OV/bin/OpC/opctemplate -disable "SAP R3 opcmsg"
I scripted it using rmesh from serverA to serverB
#/usr/bin/remsh serverB -l root -n /opt/OV/bin/OpC/opctemplate -disable "SAP R3
opcmsg"
But reported the following errors:
Warning opctemplate(4695) : Template 'SAP' doesn't exist on node eaphp25 (OpC30-
3007)
Template 'R3' doesn't exist on node eaphp25 (OpC30-3007)
Template 'opcmsg' doesn't exist on node eaphp25 (OpC30-3007)
I think there is something wrong with the option parameter in my rmesh command.
Can any forumers provide advise on it?
Thanks/cliff
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2005 04:37 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2005 04:38 PM
10-18-2005 04:38 PM
Re: rmesh command
# usr/bin/remsh serverB -l root -n " /opt/OV/bin/OpC/opctemplate -disable "SAP R3
opcmsg""
It should work now.
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2005 05:41 PM
10-18-2005 05:41 PM
Re: rmesh command
So will need to enclose the -n " commands " in double quotes will be functional.
Thanks/cliff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2005 05:53 PM
10-18-2005 05:53 PM
Re: rmesh command
# /usr/bin/remsh serverB -l root -n "/opt/OV/bin/OpC/opctemplate -disable \"SAP R3
opcmsg\""
Negation of " may be needed some times.
hth.