Operating System - HP-UX
1752746 Members
4692 Online
108789 Solutions
New Discussion

ignite net backup on filesystem

 
unix55
Advisor

ignite net backup on filesystem

Hi,

 

How i can take ignite net backup on filesystem created on a san disk.

 

Thanks

8 REPLIES 8
Torsten.
Acclaimed Contributor

Re: ignite net backup on filesystem

You need an ignite server that stores the image.

 

See also

 

http://www.hp.com/go/ignite-ux


Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
unix55
Advisor

Re: ignite net backup on filesystem

Hi,

 

Thanks for replay,

> You need an ignite server that stores the image.

 

after downloading this image what i do it ? i configuring the ignite server successfully but how i can store the ignite backup on filesystem because i don't have a lot space on local disk ?

 

sorry but i am a new on ignite-ux

 

Thanks again

Torsten.
Acclaimed Contributor

Re: ignite net backup on filesystem

I don't know what you really want to do, but maybe DRD could be a solution.

 

(drd clone or drd rehost).


Hope this helps!
Regards
Torsten.

__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.

__________________________________________________
No support by private messages. Please ask the forum!

If you feel this was helpful please click the KUDOS! thumb below!   
Arunabha Banerjee
Valued Contributor

Re: ignite net backup on filesystem

Ask you SAN to allocate a new LUN to the server (50GB or higher) depends on your environment. Then create a new file system for client backup.

 

For creating new file system follow the steps

 

# insf -eC disk

# ioscan

# pvcreate /dev/rdsk/c21t2d1

# mkdir /dev/ignite_vg

# mknod /dev/ignite_vg/group c 64 0x170000 ( check the existing minor no first # ll /dev/*/group)

# vgcreate -s 16 /dev/ignite_vg /dev/dsk/c21t2d1

# lvcreate -L 51200M -n lv_ignite /dev/ignite_vg

# newfs -F vxfs -o largefiles /dev/ignite_vg/rlv_ignite

# mkdir -p /var/opt/ignite/recovery

# chown bin:bin /var/opt/ignite/recovery

# mount  /dev/ignite_vg/lv_ignite /var/opt/ignite/recovery

 

Take a backup of /etc/fstab and edit /etc/fstab to add the new mount point

/dev/ignite_vg/lv_ignite /var/opt/ignite/recovery vxfs rw,suid,largefiles,delaylog,datainlog 0 2

 

# vi /etc/exports
/var/opt/ignite/clients -anon=2
/var/opt/ignite/recovery/archives/host1 -anon=2,access=host1

 

# exportfs -av

 

For HP-UX 11.31 only

# vi /etc/dfs/dfstab
share -F nfs -o ro /opt/ignite/data
share -F nfs -o ro /var/opt/ignite/data
share -F nfs -o anon=2 /var/opt/ignite/clients
share -F nfs -o anon=2 /var/opt/ignite/scripts

share -F nfs -o sec=sys,anon=2,rw=host1 /var/opt/ignite/recovery/archives/host1

 

# shareall

 

For taking ignite backup from client

login as root and execute the below command

# /opt/ignite/bin/make_net_recovery -Av -s igniteserver

AB
unix55
Advisor

Re: ignite net backup on filesystem

Hi,

 

when i try to mount /var/opt/ignite/recovery to the new filesystem i facing this error message

 

# mount /dev/vg01/ignite /var/opt/ignite/recovery
UX:vxfs mount: ERROR: V-3-21264: /dev/vg01/ignite is already mounted, /var/opt/ignite/recovery is busy,
                allowable number of mount points exceeded

Thanks

Dennis Handly
Acclaimed Contributor

Re: ignite net backup on filesystem

Is it already mounted?  Can you check /etc/mnttab?

unix55
Advisor

Re: ignite net backup on filesystem

Hi,

 

more /etc/mnttab


/dev/vg00/lvol3 / vxfs ioerror=mwdisable,largefiles,qio,delaylog,dev=40000003 0 1 1309279567
/dev/vg00/lvol1 /stand vxfs ioerror=mwdisable,nolargefiles,qio,log,tranflush,dev=40000001 0 0 1309279574
/dev/vg00/lvol8 /var vxfs ioerror=mwdisable,largefiles,qio,delaylog,dev=40000008 0 0 1309279606
/dev/vg00/lvol7 /usr vxfs ioerror=mwdisable,largefiles,qio,delaylog,dev=40000007 0 0 1309279606
/dev/vg00/lvol6 /tmp vxfs ioerror=mwdisable,largefiles,qio,delaylog,dev=40000006 0 0 1309279606
/dev/vg00/lvol5 /opt vxfs ioerror=mwdisable,largefiles,qio,delaylog,dev=40000005 0 0 1309279607
/dev/vg01/ignite /backup vxfs ioerror=mwdisable,largefiles,qio,delaylog,dev=40010001 0 0 1311432145

Thanks

Dennis Handly
Acclaimed Contributor

Re: ignite net backup on filesystem

/dev/vg01/ignite is already mounted as  /backup, as the error message said.