HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: make_net_recovery error
Operating System - HP-UX
1835346
Members
2462
Online
110078
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
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
- Report Inappropriate Content
08-11-2004 02:53 AM
08-11-2004 02:53 AM
Hello All
I have an Ignite server, and i replace the directory - /var/opt/ignite/recovery/archives
to a link which lead to another server (Netapp directory - give me much more disk space) , but when i am doing make_net_recovery the command fails because it is needed to be export at the /etc/exports file at the ignite server.
Can i do make_net_recovery and save the archives on another server ?
10x
I have an Ignite server, and i replace the directory - /var/opt/ignite/recovery/archives
to a link which lead to another server (Netapp directory - give me much more disk space) , but when i am doing make_net_recovery the command fails because it is needed to be export at the /etc/exports file at the ignite server.
Can i do make_net_recovery and save the archives on another server ?
10x
the truth is out there
Solved! Go to Solution.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2004 03:14 AM
08-11-2004 03:14 AM
Solution
The model for make_net_recovery is to create a machine specific archive on an Ignite Server.
Two choices I think on how to deal with it:
1) Make the Netapp directory an exported NFS mount. This will let you write your archive directly to that server as part of the command line you use to built the recovery archive.
2) Manually copy the archives over to the Netapp server at the end of the make_net_recovery process.
Either way you'll need to test this. The naming convention on make_net_recovery archives is somewhat difficult for me to remember or script, but I'm sure it can be done.
Note item 1 won't work if Netapp can'd do an NFS export.
SEP
Two choices I think on how to deal with it:
1) Make the Netapp directory an exported NFS mount. This will let you write your archive directly to that server as part of the command line you use to built the recovery archive.
2) Manually copy the archives over to the Netapp server at the end of the make_net_recovery process.
Either way you'll need to test this. The naming convention on make_net_recovery archives is somewhat difficult for me to remember or script, but I'm sure it can be done.
Note item 1 won't work if Netapp can'd do an NFS export.
SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
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
08-11-2004 03:33 AM
08-11-2004 03:33 AM
Re: make_net_recovery error
Yes, you can use make_net_recovery to create and store the recovery archive on a different system (IUX server).
But for the IUX client to be able to create the archives, it should be able to mount the directories from the IUX server via NFS.
Try this from the IUX server
# exportfs -iv -o anon=2 /var/opt/ignite/clients
# mkdir /var/opt/ignite/recovery/archives/
# chown bin:bin /var/opt/ignite/recovery/archives/
# exportfs -iv -o anon=2,access= /var/opt/ignite/recovery/archives/
Now from the IUX client, try make_net_recovery - it should work.
But for the IUX client to be able to create the archives, it should be able to mount the directories from the IUX server via NFS.
Try this from the IUX server
# exportfs -iv -o anon=2 /var/opt/ignite/clients
# mkdir /var/opt/ignite/recovery/archives/
# chown bin:bin /var/opt/ignite/recovery/archives/
# exportfs -iv -o anon=2,access=
Now from the IUX client, try make_net_recovery - it should work.
Learn What to do ,How to do and more importantly When to do ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2004 08:38 PM
08-11-2004 08:38 PM
Re: make_net_recovery error
10x to u all
I make it with a script file:
On the Netapp i export the qtree with root access to the client.
On the make_net_recovery i used the -a netapp:dir and it is working o.k.
Here is the script: (need to be run from the client)
#!/bin/ksh
HOST=`/bin/hostname`
BASE_DIR="/n/NETAPP/IGNITE/archives"
if [ -d ${BASE_DIR}/${HOST} ] ; then
echo "Dir exist"
else
mkdir ${BASE_DIR}/${HOST} ; chown bin:bin ${BASE_DIR}/${HOST}
fi
make_net_recovery -s Ignite-server -a NETAPP:/IGNITE/archives/${HOST} -x inc_entire=/dev/vg00 -n 2 -v
I make it with a script file:
On the Netapp i export the qtree with root access to the client.
On the make_net_recovery i used the -a netapp:dir and it is working o.k.
Here is the script: (need to be run from the client)
#!/bin/ksh
HOST=`/bin/hostname`
BASE_DIR="/n/NETAPP/IGNITE/archives"
if [ -d ${BASE_DIR}/${HOST} ] ; then
echo "Dir exist"
else
mkdir ${BASE_DIR}/${HOST} ; chown bin:bin ${BASE_DIR}/${HOST}
fi
make_net_recovery -s Ignite-server -a NETAPP:/IGNITE/archives/${HOST} -x inc_entire=/dev/vg00 -n 2 -v
the truth is out there
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.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP