|
Home | Switchboard | Unix Administration | Red Hat | TCP/IP Networks | Neoliberalism | Toxic Managers |
(slightly skeptical) Educational society promoting "Back to basics" movement against IT overcomplexity and bastardization of classic Unix |
News | HP Operations Manager | Syntax | Parameters | Options | Symbolic Pathnames | Examples |
Policies | Default Policy Groups | node groups | Layout groups | SSH client | Humor | Etc |
|
|
Note: HP renamed the product called now HP operations manager way too many times. Also it is very inconsistent with using abbreviations. Here we will assume that the term "HP Operations manager" and abbreviations HPOM, OMU, and OVO mean the same thing :-)
ovdeploy is poor man CMS system that comes free with HPOM. It is very poorly documented, but actually has pretty rich functionality similar to functionality of ssh. It can:
ovdeploy -upload -file /root/.ssh/id_rsa.pub -targetdir /.ssh -node ux08
ovdeploy -exec -file /usr/bin/bdf -node ux1572
ovdeploy -exec -file /usr/bin/chpasswd -par "-f root test2012" -node red302
For packages additional operations are available which make it pretty good "poor man configuration management system". You can use ovdeploy to install, remove, up or download, and register or unregister objects on the local and remote hosts you are managing. You can also use the ovdeploy command to list package inventories and execute commands on specified files.
Note: ovdeploy man page and help produced if you enter the command without parameters differs in substantial way.
Package operations
The first parameter specified the operation to be performed. There are nine operations:
The following options may be used in conjunction with the command parameters indicated in the Parameters section:
ovdeploy supports symbolic names that can be used with the sourcerootdir and targetrootdir options. You can use symbolic names to specify a directory without needing to know where the directory is located on a particular node platform, for example; the OpenView installation directory is: ovinstall. It is defined for all supported node platforms but the actual location might be different on each platform.
Supported symbolic path names are:
Install examples | Distribution of files to remote boxes | Execution of files on nodes | Packages Related Examples |
ovdeploy command can be used to distribute both files and packages. For packages additional operations are available which make it pretty good "poor man configuration management system".
The following examples show how to use the ovdeploy command with files
To install file from the current directory to the node dell12 in the directory /root/bin
ovdeploy -install -host dell12 -file ora_archive_postexec.sh -td /root/bin -perm 755
To install the file testfile, located in the /tmp directory, to the node testnode. The default target directory is $OvDataDir/installation/incoming/files/.
ovdeploy -install -file /tmp/testfile -node testnode
To deploy the file testfile, located in the /tmp directory, to the /opt/OV/bin directory on the node testnode.
ovdeploy deploy -file /tmp/testfile -targetdir /opt/OV/bin -node testnode
To delete the file /opt/OV/bin/testfile from the host testnode.
ovdeploy -remove -file testfile -targetdir /opt/OV/bin -node testnode
To delete the file $OvDataDir/installation/incoming/files/test/testfile from the host testnode. The absolute path of the file is created from the specified target directory. No target root directory was specified, so the default target root directory is used.
ovdeploy -remove -file testfile -targetdir test -host testnode
To copy the file testfile to the default target directory on the local host. The default target directory is $OvDataDir/installation/incoming/files/.
ovdeploy -upload -file /tmp/testfile -node testnode
To copy the file /etc/resolv.conf to the target directory /home/Resolv_depot on the local host.
ovdeploy -upload -file /etc/resolv.conf -targetdir /home/Resolv_depot -node testnode
To copy the files in the /tmp/testdir directory on the host testnode to the directory /opt/OV/bin on the local host.
ovdeploy -down -dir /tmp/testdir -targetdir /opt/OV/bin -node testnode
Note: the file should be already present of the local node to be executed
To execute the file run on the local host and returns the output to stdout.
ovdeploy -exec -file /tmp/run
To execute the file run.sh with the shell on the host testnode.
ovdeploy -exec -shell -file run.sh -targetrootdir bin -node testnode
To set the timeout value for the -exec command for my_exe.exe file on host node1.
ovdeploy -exec -file C:\my_exe.exe -node node1 -cmd_timeout 9000000
Display list of packages installed in the HPOM server
ovdeploy -inv
To install the package testpackage.xml, located in the /tmp directory, to the node testnode.
ovdeploy -install -pkg /tmp/testpackage.xml -node testnode
To copy all files that are specified in the package descriptor package1.xml to the default package upload directory on the host testnode.
The directory containing the specified package descriptor file and all files specified in it is the bin directory.
ovdeploy -upload -pkg package1.xml -sourcerootdir bin -host testnode
To un-register the package testpack2 from the host testnode.
ovdeploy -unreg -pkgname testpack2 -host testnode
To register the package package1.xml by copying the package descriptor to the inventory directory. If the package descriptor already exists, an error is returned to stdout.
ovdeploy -reg -pkg /tmp/package1.xml
ovdeploy -remove -pkg testpkg1 -host testnode
If testpackage1 and testpackage2 have been installed on the local machine, the following is returned:
To display the native package inventory of the local host. For example:
ovdeploy -inv -invtype native HP OpenView BBC Package 5.0.50 HP OpenView Performance Access Package 10.00.123
|
Switchboard | ||||
Latest | |||||
Past week | |||||
Past month |
To make modifications to a running remote system from the management station to shut down a OVO Agent component:# /opt/OV/bin/ovdeploy -cmd "/etc/rc.d/rc3.d/K02OVTrcSrv stop" -host host.corp.dom
Stopping OVTrcSrv...
# /opt/OV/bin/ovdeploy -cmd "ps -ef grep ov" -host host.corp.dom
root 299078 446518 5 Jan 03 - 0:27 /usr/lpp/OV/bin/ovbbccb -nodaemon
root 446518 1 0 Jan 03 - 6:31 /usr/lpp/OV/bin/ovcd
root 467048 655434 2 15:33:30 - 0:00 /bin/sh -c ps -ef grep ov
root 655434 446518 8 Jan 03 - 0:00 /usr/lpp/OV/lbin/conf/ovconfd
Mar 27, 2006 | IT Resource Center forums
Brandon V:
I am running OVOU 8.14, agent version 8.13 on HP-UX 11.11. I am trying to run the command:
ovdeploy -cmd "ls" -host <remoteHost>
I am running this command after sudoing to root. I am getting the error message:
Unable to execute command 'ls' on node
(depl-175) Message returned from host:
Caller is not authorized to perform the requested operation.
I can run this command locally, but I not sure what permission issue it preventing me from doing this from the managagement server. Can anyone tell what, in regards to permissions, should I be looking at? Any help is appreciated.
Sylvain CROUET:
Can you try adding the -ovrg server option?
Brandon V
Thank you Sylvain that was exactly it. I wish I could award more than 10 points
Sylvain CROUET:
Without the "-ovrg server" option you act as the manager's agent, which usually has no rights to perform actions on other agents. With the option you act as the manager itself, which has rights.
Goran Koruga:
The syntax is as follows:
ovdeploy -ovrg server -cmd yourcommand -host nodename
Goran
izad, 01-05-2010 10:21 PM
Hi Friends,
Has anyone succeeded running vi on a managed node from OVO server ? something like this :
ovdeploy -ovrg server -cmd 'vi /tmp/blah.txt' -node
I get this:
[Using open mode] "/tmp/tttt" [New file]
Input read error
Tried 'TERM=vt100;export TERM;vi /tmp/blah.txt' as well but no luck.
Tried osspi_vi.sh, created an application - nothing worked.
I can't bring the remote xterm as I've only port 383 and ICMP opened between server and node.
Any idea is highly appreciated with points.
Thank you. I hate quotations. Tell me what you know !
Banu_Prakash, 01-05-2010
I have never used vi through ovdeploy but if i want to edit any file from node end i will use opcdeploy command
First i will copy the required file to management server
opcdeploy -cmd "cat /tmp/tmp/blah.txt" -node > /tmp/blah.txt
I will edit the file /tmp/blah.txt and will put it back to node using opcdeploy command
opcdeploy -deploy -file -node [-targetdir ] -trd absolute
HTH Banu
Goran Koruga, 01-05-2010
Hello.
This won't work - vi needs a real TTY.
Something like sed or ed shall work.
Regards, Goran .
Mohamed AbdelMoneim, 01-06-2010 04:18 AM
Hi, Did you try
ovdeply -cmd "cat THE TEXT YOU WANT TO ADD > /tmp/file.txt" -node THE NODE NAME
it is kind of redirection with cat command to append or overwrite the text in files
Remco Donders, 01-06-2010
I've you are able to open x-windows and there isn't a firewall between the server and node and xterm is available on remote node.
You could try:
ovdeploy -cmd "xterm -display PCRunningX:0.0 -e vi /file/to/edit" -node nodename
However I do not like this option as it doesn't give you info on which server the xterm is running.. You might need other arguments to set the title of the xterm window.
HTH.,
Remco ....
Society
Groupthink : Two Party System as Polyarchy : Corruption of Regulators : Bureaucracies : Understanding Micromanagers and Control Freaks : Toxic Managers : Harvard Mafia : Diplomatic Communication : Surviving a Bad Performance Review : Insufficient Retirement Funds as Immanent Problem of Neoliberal Regime : PseudoScience : Who Rules America : Neoliberalism : The Iron Law of Oligarchy : Libertarian Philosophy
Quotes
War and Peace : Skeptical Finance : John Kenneth Galbraith :Talleyrand : Oscar Wilde : Otto Von Bismarck : Keynes : George Carlin : Skeptics : Propaganda : SE quotes : Language Design and Programming Quotes : Random IT-related quotes : Somerset Maugham : Marcus Aurelius : Kurt Vonnegut : Eric Hoffer : Winston Churchill : Napoleon Bonaparte : Ambrose Bierce : Bernard Shaw : Mark Twain Quotes
Bulletin:
Vol 25, No.12 (December, 2013) Rational Fools vs. Efficient Crooks The efficient markets hypothesis : Political Skeptic Bulletin, 2013 : Unemployment Bulletin, 2010 : Vol 23, No.10 (October, 2011) An observation about corporate security departments : Slightly Skeptical Euromaydan Chronicles, June 2014 : Greenspan legacy bulletin, 2008 : Vol 25, No.10 (October, 2013) Cryptolocker Trojan (Win32/Crilock.A) : Vol 25, No.08 (August, 2013) Cloud providers as intelligence collection hubs : Financial Humor Bulletin, 2010 : Inequality Bulletin, 2009 : Financial Humor Bulletin, 2008 : Copyleft Problems Bulletin, 2004 : Financial Humor Bulletin, 2011 : Energy Bulletin, 2010 : Malware Protection Bulletin, 2010 : Vol 26, No.1 (January, 2013) Object-Oriented Cult : Political Skeptic Bulletin, 2011 : Vol 23, No.11 (November, 2011) Softpanorama classification of sysadmin horror stories : Vol 25, No.05 (May, 2013) Corporate bullshit as a communication method : Vol 25, No.06 (June, 2013) A Note on the Relationship of Brooks Law and Conway Law
History:
Fifty glorious years (1950-2000): the triumph of the US computer engineering : Donald Knuth : TAoCP and its Influence of Computer Science : Richard Stallman : Linus Torvalds : Larry Wall : John K. Ousterhout : CTSS : Multix OS Unix History : Unix shell history : VI editor : History of pipes concept : Solaris : MS DOS : Programming Languages History : PL/1 : Simula 67 : C : History of GCC development : Scripting Languages : Perl history : OS History : Mail : DNS : SSH : CPU Instruction Sets : SPARC systems 1987-2006 : Norton Commander : Norton Utilities : Norton Ghost : Frontpage history : Malware Defense History : GNU Screen : OSS early history
Classic books:
The Peter Principle : Parkinson Law : 1984 : The Mythical Man-Month : How to Solve It by George Polya : The Art of Computer Programming : The Elements of Programming Style : The Unix Hater’s Handbook : The Jargon file : The True Believer : Programming Pearls : The Good Soldier Svejk : The Power Elite
Most popular humor pages:
Manifest of the Softpanorama IT Slacker Society : Ten Commandments of the IT Slackers Society : Computer Humor Collection : BSD Logo Story : The Cuckoo's Egg : IT Slang : C++ Humor : ARE YOU A BBS ADDICT? : The Perl Purity Test : Object oriented programmers of all nations : Financial Humor : Financial Humor Bulletin, 2008 : Financial Humor Bulletin, 2010 : The Most Comprehensive Collection of Editor-related Humor : Programming Language Humor : Goldman Sachs related humor : Greenspan humor : C Humor : Scripting Humor : Real Programmers Humor : Web Humor : GPL-related Humor : OFM Humor : Politically Incorrect Humor : IDS Humor : "Linux Sucks" Humor : Russian Musical Humor : Best Russian Programmer Humor : Microsoft plans to buy Catholic Church : Richard Stallman Related Humor : Admin Humor : Perl-related Humor : Linus Torvalds Related humor : PseudoScience Related Humor : Networking Humor : Shell Humor : Financial Humor Bulletin, 2011 : Financial Humor Bulletin, 2012 : Financial Humor Bulletin, 2013 : Java Humor : Software Engineering Humor : Sun Solaris Related Humor : Education Humor : IBM Humor : Assembler-related Humor : VIM Humor : Computer Viruses Humor : Bright tomorrow is rescheduled to a day after tomorrow : Classic Computer Humor
The Last but not Least Technology is dominated by two types of people: those who understand what they do not manage and those who manage what they do not understand ~Archibald Putt. Ph.D
Copyright © 1996-2021 by Softpanorama Society. www.softpanorama.org was initially created as a service to the (now defunct) UN Sustainable Development Networking Programme (SDNP) without any remuneration. This document is an industrial compilation designed and created exclusively for educational use and is distributed under the Softpanorama Content License. Original materials copyright belong to respective owners. Quotes are made for educational purposes only in compliance with the fair use doctrine.
FAIR USE NOTICE This site contains copyrighted material the use of which has not always been specifically authorized by the copyright owner. We are making such material available to advance understanding of computer science, IT technology, economic, scientific, and social issues. We believe this constitutes a 'fair use' of any such copyrighted material as provided by section 107 of the US Copyright Law according to which such material can be distributed without profit exclusively for research and educational purposes.
This is a Spartan WHYFF (We Help You For Free) site written by people for whom English is not a native language. Grammar and spelling errors should be expected. The site contain some broken links as it develops like a living tree...
|
You can use PayPal to to buy a cup of coffee for authors of this site |
Disclaimer:
The statements, views and opinions presented on this web page are those of the author (or referenced source) and are not endorsed by, nor do they necessarily reflect, the opinions of the Softpanorama society. We do not warrant the correctness of the information provided or its fitness for any purpose. The site uses AdSense so you need to be aware of Google privacy policy. You you do not want to be tracked by Google please disable Javascript for this site. This site is perfectly usable without Javascript.
Last modified: March 12, 2019