Operating System - HP-UX
1753952 Members
7939 Online
108811 Solutions
New Discussion юеВ

ignite - make_net_recovery

 
SOLVED
Go to solution
Jacques Carriere
Regular Advisor

ignite - make_net_recovery

Unable to mount or write
tux01:/var/opt/ignite/recovery/archives/tuxtst02
On tux01 you may need to:
mkdir -p /var/opt/ignite/recovery/archives/tuxtst02
chown bin:bin /var/opt/ignite/recovery/archives/tuxtst02
-----------------------------------
Where is the config file that I can modify the nfs mount point other than the above default? I would prefer tux01:/ignite

Jacques
3 REPLIES 3
Denver Osborn
Honored Contributor
Solution

Re: ignite - make_net_recovery

Under the client dir on the Ignite-UX server you can create a defaults file. See man make_net_recovery for details.

In a nutshell, on IUX server cd /var/opt/ignite/clients//recovery and create your defaults file. The contents of your defaults file would look similar to

RECOVERY_LOCATION=tux01:/ignite/tux01
RECOVERY_DESCRIPTION="Recovery Archive"


Now anytime make_net_recovery for that client is run w/out the '-a' option, it will default to tux01:/ignite/tux01.

You also need to have the archive location exported to the client. Add it to /etc/exports and exportfs -av.

/etc/exports entry on iux server...
/ignite/tux01 -anon=2,access=

Also make sure the archive dir is writable by bin. chown bin:bin /ignite/tux01; chmod 755 /ignite/tux01

Hope this helps,
-denver
Jacques Carriere
Regular Advisor

Re: ignite - make_net_recovery

thanks for help. Points assigned.

Jacques
Jacques Carriere
Regular Advisor

Re: ignite - make_net_recovery

thanks