- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Customize ignite 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
03-23-2009 04:15 AM
03-23-2009 04:15 AM
Customize ignite server
I do not want my ignite server to save the ignite archives in the default location (/var/opt/ignite/).
I have created a 25GB LUN on the EVA and a new VG and LV (mount point=/ignite) for all 8 HPUX servers to store there ignite archives.
points to be awarded.
kehad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2009 05:30 AM
03-23-2009 05:30 AM
Re: Customize ignite server
My ignite "archives" fs
# bdf /var/opt/ignite/recovery
/dev/vg00/lvol8 4710400 3811088 892320 81% /var
bdf /var/opt/ignite/recovery/archives
/dev/vgvarignite/lvrecovery
114855936 93696512 20994184 82% /var/opt/ignite/recovery/archives
rgs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2009 05:47 AM
03-23-2009 05:47 AM
Re: Customize ignite server
As per the man page, you can specifiy the alternate archive directory with -a option in the commandline.
-a archive_server:archive_directories
Ganesh.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2009 05:49 AM
03-23-2009 05:49 AM
Re: Customize ignite server
Another possiblity is create a symbolic link between /ignite and /var/opt/ignite.
Ganesh.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2009 05:53 AM
03-23-2009 05:53 AM
Re: Customize ignite server
See docs:
http://docs.hp.com/en/5992-1999/5992-1999.pdf
info library:
http://docs.hp.com/en/IUX/infolib.html
types of config files:
http://www.docs.hp.com/en/B2355-90153/apbs03.html
Per client configuration.
http://www.docs.hp.com/en/5992-5309/ch13s05.html
What you want to do is make /ignite an NFS share, by editing /etc/exports and sharing /ignite This will let you store make_net_recovery archives. By default nfs is configured and working though you will need to restart nfs.core and nfs.server to do a new share.
1 response, should meet your needs.
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
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2009 06:09 AM
03-23-2009 06:09 AM
Re: Customize ignite server
I use a script like this one to create from a central point ignite archive on different servers, storing recovery info on an Ignite Server and storing image on a NFS server (Ognite server and NFS server can be the same ..)
#!/usr/bin/sh
[ $# -ne 2 ] && echo $0 CLIENT SERVER && exit 2
CLIENT=$1
SERVER=$2
echo "Remote launch of a recovery of $CLIENT on Ignite $SERVER"
remsh $CLIENT -n "/opt/ignite/bin/make_net_recovery -x inc_entire=vg00 -Avvvvv -s $SERVER -n 2 -a srvnfs:/Images_Ignite/${CLIENT}'" > /var/SAFE_
ADMIN/bckp_srv/logs_Ignite_${CLIENT}_`date +'%d%m%y-%H%M'`
CLIENT is the name of the server to backup
SERVER is the name of teh server holding recovery configs (you can do one week SEREVR1 and next SERVER2)
In the scrip srvnfs is the NSF server that will strore the images ..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-23-2009 07:17 AM
03-23-2009 07:17 AM
Re: Customize ignite server
thanks for all your replies. i will look into this tomorrow and revert back to you all.
thanks