Skip to ContentSkip to Footer
Start of content
- Community Home
- >
- Servers and Operating Systems
- >
- Operating System - Linux
- >
- General
- >
- product install with Sysman utility
General
-
- Forums
-
- Advancing Life & Work
- Advantage EX
- Alliances
- Around the Storage Block
- HPE Ezmeral: Uncut
- OEM Solutions
- Servers & Systems: The Right Compute
- Tech Insights
- The Cloud Experience Everywhere
- HPE Blog, Austria, Germany & Switzerland
- Blog HPE, France
- HPE Blog, Italy
- HPE Blog, Japan
- HPE Blog, Middle East
- HPE Blog, Latin America
- HPE Blog, Russia
- HPE Blog, Saudi Arabia
- HPE Blog, South Africa
- HPE Blog, UK & Ireland
-
Blogs
- Advancing Life & Work
- Advantage EX
- Alliances
- Around the Storage Block
- HPE Blog, Latin America
- HPE Blog, Middle East
- HPE Blog, Saudi Arabia
- HPE Blog, South Africa
- HPE Blog, UK & Ireland
- HPE Ezmeral: Uncut
- OEM Solutions
- Servers & Systems: The Right Compute
- Tech Insights
- The Cloud Experience Everywhere
-
Information
- Community
- Welcome
- Getting Started
- FAQ
- Ranking Overview
- Rules of Participation
- Tips and Tricks
- Resources
- Announcements
- Email us
- Feedback
- Information Libraries
- Integrated Systems
- Networking
- Servers
- Storage
- Other HPE Sites
- Support Center
- Aruba Airheads Community
- Enterprise.nxt
- HPE Dev Community
- Cloud28+ Community
- Marketplace
-
Forums
-
Blogs
-
Information
-
English
Topic Options
- 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
- Email to a Friend
- Report Inappropriate Content
01-27-2004 07:54 PM
01-27-2004 07:54 PM
product install with Sysman utility
I am trying to install the product(.pcsi) on other node of cluster using through sysman utility, but it is not installing.
$mc sysman
sysman> set environment/node=nodename
sysman> do product install productname/source=[pcsi destination]
it going upto some point and after that it is coming out with sysman prompt only.infact while installing it has to ask some question to the user but before that only it coming out.
what i am trying is it posiable or not. If yes
where i am going wrong.
Waiting for reply.
Regards
Deepak
$mc sysman
sysman> set environment/node=nodename
sysman> do product install productname/source=[pcsi destination]
it going upto some point and after that it is coming out with sysman prompt only.infact while installing it has to ask some question to the user but before that only it coming out.
what i am trying is it posiable or not. If yes
where i am going wrong.
Waiting for reply.
Regards
Deepak
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
01-27-2004 08:48 PM
01-27-2004 08:48 PM
Re: product install with Sysman utility
I think you would have more answers in the Vms forum, as I guess this is a Vms installation.
For that problem, I guess that if your installation requires some answers, it will fail, unless you have put an answer file, like a .ans in sys$common: for a vmsinstal installation.
there is a similar mechanism with product install
For that problem, I guess that if your installation requires some answers, it will fail, unless you have put an answer file, like a .ans in sys$common:
there is a similar mechanism with product install
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
01-28-2004 03:09 PM
01-28-2004 03:09 PM
Re: product install with Sysman utility
Hello Deepak,
First I do agree with Gerard, this is a Linux forum while you do ask a VMS question. Your chances to get a good answer a much better over at
http://forums1.itrc.hp.com/service/forums/familyhome.do?familyId=288
in the OpenVMS forum.
Having said that and as one of the more active members over there ;-)
* What is actually the problem you do want to solve?
If we are talking about a cluster with a common system disk you only need to install once in the cluster so I do not understand why you would need SYSMAN at all. If you do want to install into sys$specific and/or have several system disks you do need to make sure you do have separate PCSI databases, else you are seriously asking for trouble.
Now assuming you do have good reasons, check the installation instructions ;-) E.g. the latest 7.3-2 patch carries the following note, which should cover your issue:
- $ DEFINE/SYS NO_ASK$BACKUP TRUE
- $ DEFINE/SYS NO_ASK$REBOOT TRUE
- Add the following qualifiers to the PRODUCT INSTALL command and
add that command to the DCL procedure.
/PROD=DEC/BASE=AXPVMS/VER=1.0
- De-assign the logicals assigned
For example, a sample command file to install the
VMS732_GRAPHICS-V0100 kit would be:
$
$ DEFINE/SYS NO_ASK$BACKUP TRUE
$ DEFINE/SYS NO_ASK$REBOOT TRUE
$!
$ PROD INSTALL VMS732_GRAPHICS/PROD=DEC/BASE=AXPVMS/VER=1.0
$!
$ DEASSIGN/SYS NO_ASK$BACKUP
$ DEASSIGN/SYS NO_ASK$REBOOT
$!
$ exit
Adapt to your needs, wrap in a DCL and execute this DCL via SYSMAN and off you go ;-)
Greetings, Martin
First I do agree with Gerard, this is a Linux forum while you do ask a VMS question. Your chances to get a good answer a much better over at
http://forums1.itrc.hp.com/service/forums/familyhome.do?familyId=288
in the OpenVMS forum.
Having said that and as one of the more active members over there ;-)
* What is actually the problem you do want to solve?
If we are talking about a cluster with a common system disk you only need to install once in the cluster so I do not understand why you would need SYSMAN at all. If you do want to install into sys$specific and/or have several system disks you do need to make sure you do have separate PCSI databases, else you are seriously asking for trouble.
Now assuming you do have good reasons, check the installation instructions ;-) E.g. the latest 7.3-2 patch carries the following note, which should cover your issue:
- $ DEFINE/SYS NO_ASK$BACKUP TRUE
- $ DEFINE/SYS NO_ASK$REBOOT TRUE
- Add the following qualifiers to the PRODUCT INSTALL command and
add that command to the DCL procedure.
/PROD=DEC/BASE=AXPVMS/VER=1.0
- De-assign the logicals assigned
For example, a sample command file to install the
VMS732_GRAPHICS-V0100 kit would be:
$
$ DEFINE/SYS NO_ASK$BACKUP TRUE
$ DEFINE/SYS NO_ASK$REBOOT TRUE
$!
$ PROD INSTALL VMS732_GRAPHICS/PROD=DEC/BASE=AXPVMS/VER=1.0
$!
$ DEASSIGN/SYS NO_ASK$BACKUP
$ DEASSIGN/SYS NO_ASK$REBOOT
$!
$ exit
Adapt to your needs, wrap in a DCL and execute this DCL via SYSMAN and off you go ;-)
Greetings, Martin
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
End of content
United States
Hewlett Packard Enterprise International
Communities
- Communities
- HPE Blogs and Forum
© Copyright 2021 Hewlett Packard Enterprise Development LP