Sunday, April 11, 2010

HP OpenVMS 7.3 Version Test Environment maintenance.

0) username: System
   password: what ever you have


1)updating licenses of HP openVMS
$ show license
go to the location where the licenses are placed.
2)$ set def dua1:[psw]
changes directory sets default directory to psw
  $ dir   (to see contents of directory.)
3)Execute the file LP.com
text file of license save the text in notepad and copy using ftp to openVMS location folder with name LP.com
$license delete       (delete first all the expired licenses)
PRODUCT: *            (Enter wildcard for PRODUCT.using wildcard to delete all product licenses.)
$ @LP.COM            (execute the script like this by putting @ infron tof the filename)
4) show license    (now in output verify the latest date and time of new licenses.)
-----------------------------------------------
Basic manipulations
1) show users  (to see logged in users)
2) show process    (to see running processes)
3) @sys$manager:tcpip$config    (startup Compaq Tcp/IP services for OpenVMS)
select from menu and mostly it is number 6 to press for startingup Compaq Tcp/IP services for OpenVMS.
select from menu and mostly it is number 5 to press for Shutdown Compaq Tcp/IP services for OpenVMS.
select from menu and mostly it is number 7 to press for Run Tests.
Exit by pressing E.
------------------------------------------
Change system password
>>>B/R5:1        (enter this command and then it reaches another prompt sysboot)
SYSBOOT> SET/STARTUP OPAQ:
SYSBOOT> SET WINDOW_SYSTEM 0
SYSBOOT> SET WRITESYSPARAMS 0
SYSBOOT> CONTINUE     (NOW AFTER THIS IT WILL RETURN TO $ AND)
$ spawn
$ @sys$system:startup           (this will satrt up boot process and take some time around 1 minute)
$ set def sys$system
$ run sys$system:authorize
UAF> mod system/nopwde/pass=rahul (modifies password rahul is new password) using nopwde system will dont ask to login. using old password)
UAF>exit

Json extractor and While loop

Waiting for a specific value in response of api request. using while loop. Add a While Loop. The api requets will be executed inside th...