- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Ignite-UX Server
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
05-01-2001 10:29 AM
05-01-2001 10:29 AM
I am using one server to make_net_recovery for about 15 others.
I have also just downloaded the latest version of Ignite-UX; B.3.3, will that have to be installed on each server?
I WILL gladly assign points for any/all help.
Thanks,
Andy
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2001 11:03 AM
05-01-2001 11:03 AM
Re: Ignite-UX Server
You may already have this info but here is the website for Ignite/UX which will have the latest info:
We will need a portion of the HP Ignite product to obtain the software (make_recovery command) required to build a bootable backup tape of the root volume group. This can also be used to clone systems that have the same os configuration with patches and security setup already.
You can get the latest version of Ignite from HP's web site. The software is free and you can get documentation for Ignite, as well as instructions downloading and copying into a depot. The software is located at:
http://www.software.hp.com/products/IUX
I'm sure someone else will have the program you need on each server to create the archive and get it back to your ignite server.
Best of luck.
Peg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-01-2001 12:39 PM
05-01-2001 12:39 PM
Re: Ignite-UX Server
To have a recovery tape you can use make_net_recovery. I would suggest to use one ignite server to do archives of all boxes and store it in a seperate file system.
In event of a server crash, you can boot from the network using the ignite server and recover the system instead of looking for tapes.
Hope this answers your question
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2001 05:22 AM
05-02-2001 05:22 AM
Solution# Either install the software or upgrade Ignite if needed
/opt/ignite/lbin/check_version -s ${SERVER}
if [ $? -ne 0 ]
then echo "Installing or upgrading Ignite software\n"
swinstall -s ${SERVER}:/var/opt/ignite/depots/recovery_cmds '*'
if [ $? -ne 0 ]
then echo "Error updating software `date` EOJ"
exit 1
fi
fi
This requires you to create the Ignite depot using the following command:
pkg_rec_depot -f
The -f option gives you full Ignite. If you do this without -f you get just enough to do the network ignite, but not enough if you do want to do an Ignite to tape.
Also will need to configure the NFS mount points on the server which simply means exporting /var/opt/ignite/clients as rw to the servers that need access as well as /var/opt/ignite/recovery/archive/$SERVER for each server rw as well.
We use this for about 2 dozen servers and so far it has worked very well. Note most of this stuff can be done via the GUI, but we have cron type jobs which is why I know the command line stuff.
Hope this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2001 05:30 AM
05-02-2001 05:30 AM
Re: Ignite-UX Server
If you do run all of your net recoveries via the server gui make sure and umount the server directories from the client after the recovery is finished. I have had these nfs mounts hang and ultimately had to reboot the client and the server. Running the recovery via a script thru cron from the client has not produced this problem and unmounts the server directories cleanly.