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
11-12-2008 01:51 PM
11-12-2008 01:51 PM
patch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2008 02:07 PM
11-12-2008 02:07 PM
Re: patch
SWA has been around for a while. If you don't have it, fetch and install it from:
www.hp.com/go/swa
The Software Assistant (SWA) uses the SD toolset ('swcopy') to build and apply patch bundles. It performs all the work of downloading and copying patches into a single depot. *You* choose when to install the depot just as you would expect, using 'swinstall'.
There is some good documentation here:
http://docs.hp.com/en/5992-3930/index.html
Once installed, a template to begin your configuration is available as:
# /etc/opt/swa/swa.conf.template
I begin with a '.swa.conf' file that looks like this:
user_dir = /var/opt/swa/.swa
analyzers = QPK CRIT PCW SEC
catalog_max_age = 0
inventory_max_age = 0
html_report = ~/.swa/report/swa_report.html
allow_existing_depot = false
...This allows me to report (and later collect) the Quality Packs, critical patches, patches with warnings and security-relatated information for a server.
I basically do:
# swa clean all -v
...to cleanup from previous runs...
# swa report
...which builds '.swa/report/swa_report.html' --- the reported analysis
# swa get -v -t /patches/swdepot
...which fetches the QPK patch bundles, replacement patches *and* any other patches as performed by the ' swa report ' above. The downloaded software is cached in '/var/opt/swa/cache'. A log 'var/opt/swa/swa.log' is created. After the software is downloaded, it is copied to the 'swdepot' depot and registered. My '/patches' directory is a mounted filesystem of about 4GB.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2008 02:15 PM
11-12-2008 02:15 PM
Re: patch
Is the new one what?
>>Also is there a difference between applying a patch bundles to the system using swinstall or swa.
SWA does not apply patch bundles. It can recommend and download the patches, but you still apply patches with swinstall.
>>I have heard using patch bundles will not update the firmware patching.
It depends. I have seen some firmware patches in patch bundles. I guess it depends on which firmware you are talking about.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2008 02:41 PM
11-12-2008 02:41 PM
Re: patch
Thanks Much
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2008 02:45 PM
11-12-2008 02:45 PM
Re: patch
I guess I don't understand what your question is.
SWA DOES NOT install any patches.
SWA can gather information from your servers, recommends patches to install, and download those patches from HP.
To actually install the patches you must run 'swinstall' on the server you want the patches to be installed on.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2008 03:41 PM
11-12-2008 03:41 PM
Re: patch
Your brain is doing the sweating vs using SWA. :-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-12-2008 04:07 PM
11-12-2008 04:07 PM
Re: patch
> But what is the difference between the normal swinstall " patching" vs swinstall using SWA
SWA never runs 'swinstall'. You do. SWA performs the patch analysis and bundling of patches into a single software depot. *You* chose when to install the depot (bundle).
Notice in my example, that you can limit your analysis to a report only:
# swa report
...and if/when you are actually ready to download the patches selected, do:
# swa get ...
...after which you would do:
# swinstall -s /patches/swdepot ...
...just as you would for any software depot!
Regards!
...JRF...