- Community Home
- >
- Servers and Operating Systems
- >
- Operating System - HP-UX
- >
- System Administration
- >
- Patch Deploy using swinstall
-
-
Categories
- Topics
- Hybrid IT with Cloud
- Mobile & IoT
- IT for Data & Analytics
- Transformation
- Strategy and Technology
- Products
- Cloud
- Integrated Systems
- Networking
- Servers and Operating Systems
- Services
- Storage
- Company
- Events
- Partner Solutions and Certifications
- Welcome
- Welcome
- Announcements
- Tips and Tricks
- Feedback
-
Blogs
- Alliances
- Around the Storage Block
- Behind the scenes @ Labs
- Converged Data Center Infrastructure
- Digital Transformation
- Grounded in the Cloud
- HPE Careers
- HPE Storage Tech Insiders
- Infrastructure Insights
- Inspiring Progress
- Internet of Things (IoT)
- My Learning Certification
- Networking
- OEM Solutions
- Servers: The Right Compute
- Telecom IQ
- Transforming IT
-
Quick Links
- Community
- Getting Started
- FAQ
- Ranking Overview
- Rules of Participation
- Contact
- Email us
- Tell us what you think
- Information Libraries
- Integrated Systems
- Networking
- Servers
- Storage
- Other HPE Sites
- Support Center
- Enterprise.nxt
- Marketplace
- Aruba Airheads Community
-
Categories
-
Forums
-
Blogs
-
InformationEnglish
Patch Deploy using swinstall
SOLVED- 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
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
08-11-2009 07:09 AM
08-11-2009 07:09 AM
I have downloaded the expect-5.43-ia64-11.23.depot on Server1 one and now i need to Using swinstall to deploy from server1 /depot/EXPECT/expect-5.43-ia64-11.23.depot to install on the servers indicated below
Server2
server3
Server4
Server5
Please help me how do i go ahead on doing this
Thanks,
Phil
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
08-11-2009 07:17 AM
08-11-2009 07:17 AM
SolutionYou cannot deploy it from server1 to all the nodes. Instead you have to use the depot server1:/expect-5.43-ia64-11.23.depot as Network depot and run swinstall on all the nodes. Follow the steps.
On server1,
#swreg -l depot
The above command will register the depot.
Then run this command on all the nodes.
#swinstall -v -s server1:/
If you need include the options like -x autoreboot=true etc.,
The above command will use the depot file available from server one and install the product expect.
Ganesh.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
08-11-2009 07:23 AM
08-11-2009 07:23 AM
Re: Patch Deploy using swinstall
Re: Patch Deploy using swinstall
swlist -l depot @ server1
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
08-11-2009 07:26 AM
08-11-2009 07:26 AM
Re: Patch Deploy using swinstall
Re: Patch Deploy using swinstall
What if i have to do two /depot/EXPECT/expect-5.43-ia64-11.23.depot and /depot/EXPECT/tcltk-8.5.7-ia64-11.23.depot.
Please advice
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
08-11-2009 07:31 AM
08-11-2009 07:31 AM
Re: Patch Deploy using swinstall
Re: Patch Deploy using swinstall
1) Check whether depot is registered,
#swlist -l depot <<==If it regsitered, here it will show the depot.
if not, register it by,
#swreg -l depot
Again verify with.
#swlist -l depot
2) To install it from other servers, run,
#swinstall -s server1:
Regards,
LIJEESH N G
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
08-11-2009 07:32 AM
08-11-2009 07:32 AM
Re: Patch Deploy using swinstall
Re: Patch Deploy using swinstall
See:
http://forums11.itrc.hp.com/service/forums/questionanswer.do?admit=109447626+1250004657522+28353475&threadId=1030973
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
08-11-2009 07:35 AM
08-11-2009 07:35 AM
Re: Patch Deploy using swinstall
Re: Patch Deploy using swinstall
#swreg -l depot /depot/EXPECT/ <<<==To register
#swlist -l depot <<==To verify
#swinstall -s server1:/depot/EXPECT/ <<<===To install from other servers.
Regards
LIJEESH N G
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
08-11-2009 08:06 AM
08-11-2009 08:06 AM
Re: Patch Deploy using swinstall
Re: Patch Deploy using swinstall
>>What if i have to do two /depot/EXPECT/expect-5.43-ia64-11.23.depot and /depot/EXPECT/tcltk-8.5.7-ia64-11.23.depot.<<
You can follow the same steps for both depot. Or else create a single deport which combines both product and install it on a single shot. Follow these steps.
Copy both depots into /tmp/new folder. then,
# cd /tmp/new
# for i in *.depot
do
swcopy -s /tmp/new/$i \* @ /tmp/new/depot
done
Then register the depot.
#swreg -l depot /tmp/new/depot
Check the depot by listing the products,
#swlist -d @/tmp/new/depot
The above command should list both "expect" and "tcltk" products. Now run this command on all the servers.
#swinstall -v -s server1:/tmp/new/depot
Ganesh.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
08-11-2009 08:08 AM
08-11-2009 08:08 AM
Re: Patch Deploy using swinstall
Re: Patch Deploy using swinstall
Hi, you should build a depot that includes all dependencies.
Deploy it on an NFS share.
cd into the depot
swreg -l depot
You can install from all servers based on this depot build.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
08-11-2009 09:18 AM
08-11-2009 09:18 AM
Re: Patch Deploy using swinstall
Re: Patch Deploy using swinstall
Special thanks to Ganesan R.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
08-11-2009 09:19 AM
08-11-2009 09:19 AM
Re: Patch Deploy using swinstall
Re: Patch Deploy using swinstall
Hewlett Packard Enterprise International
- Communities
- HPE Blogs and Forum
© Copyright 2018 Hewlett Packard Enterprise Development LP