[Tip] Backup and restore on AIX


 
Thread Tools Search this Thread
Operating Systems AIX [Tip] Backup and restore on AIX
# 1  
Old 02-25-2013
[Tip] Backup and restore on AIX

Quote:
Originally Posted by bakunin
And for system-wide backups i would use "mksysb" and "savevg" solely under AIX - neither "tar" nor any of the other aforementioned programs.

Just my 2 cents.

bakunin
Pretty penny's.

Just remember that mksysb and savevg are just front-ends for backup.

In other words, backups on AIX are organized by volume groups. mksysb is specialized for rootvg and savevg is used for other volume groups.

Ignoring that rootvg also creates files needed to boot a system that basic content and layout is the same.


Code:
michael@x054:[/data/x052/suma/lpp]restore -Tqf *6108*savevg | head                                
New volume on vgNim.6108.savevg:
Cluster size is 51200 bytes (100 blocks).
The volume number is 1.
The backup date is: Thu Feb 21 13:28:20 CUT 2013
Files are backed up by name.
The user is root.
./tmp/vgdata/vgNim/image.info
./tmp/vgdata/vgdata.files10223824
./tmp/vgdata/vgdata.files
./tmp/vgdata/vgNim/filesystems
./tmp/vgdata/vgNim/vgNim.data
./tmp/vgdata/vgNim/backup.data

Code:
michael@x054:[/data/x052/suma/mksysb/6108]restore -Tqf *61*mksb | head    
New volume on 6100-08-00-0000.mksb:
Cluster size is 51200 bytes (100 blocks).
The volume number is 1.
The backup date is: Thu Feb 21 11:17:57 CUT 2013
Files are backed up by name.
The user is root.
./bosinst.data
./tmp/vgdata/rootvg/image.info
./image.data
./tmp/vgdata/rootvg/backup.data

Note: when mksysb is written to a file, rather than bootable medium, there is no boot program appended to the file (see above).

restvg - restore volume group - is the standard tool for restoring backups created by savevg.

"Booting" is the normal interface for restoring an mksysb image. Since a file does not have a normal boot interface a nim server can be used to restore practically any mksysb image. Two commands are needed to create the resources needed to restore an mksysb image "asis".
Code:
# nim -o define -t mksysb -a master=server -a location=/path/to/mksysb_file nim_mksysb_name
# nim -o define -t spot -a master=server -a location=/export/mksysb/spots nim_mysysb_spot

And then a nim bos_inst command using the two resources just defined to boot and install the image.

Getting back to restvg:

restvg -l -f savevg_or_mksysb.file will tell you what is in the backup - sort of like doing an lsvg -l command.
Code:
michael@x054:[/data/x052/suma/mksysb/6108]restvg -l -f 6100-08-00-0000.mksb
VOLUME GROUP:           rootvg
BACKUP DATE/TIME:       Thu Feb 21 05:17:32 CST 2013
UNAME INFO:             AIX localhost 1 6 00C39B8D4C00
BACKUP OSLEVEL:         6.1.8.0
MAINTENANCE LEVEL:      6100-08
BACKUP SIZE (MB):       2048
SHRINK SIZE (MB):       1527
VG DATA ONLY:           no

rootvg:
LV NAME             TYPE       LPs     PPs     PVs  LV STATE      MOUNT POINT
hd5                 boot       2       2       1    closed/syncd  N/A
hd6                 paging     32      32      1    open/syncd    N/A
hd8                 jfs2log    1       1       1    open/syncd    N/A
hd4                 jfs2       3       3       1    open/syncd    /
hd2                 jfs2       51      51      1    open/syncd    /usr
hd9var              jfs2       3       3       1    open/syncd    /var
hd3                 jfs2       5       5       1    open/syncd    /tmp
hd1                 jfs2       1       1       1    open/syncd    /home
hd10opt             jfs2       6       6       1    open/syncd    /opt
hd11admin           jfs2       8       8       1    open/syncd    /admin
livedump            jfs2       16      16      1    open/syncd    /var/adm/ras/livedump

Code:
michael@x054:[/data/x052/suma/lpp]restvg -l -f vgNim.6108.savevg
VOLUME GROUP:           vgNim
BACKUP DATE/TIME:       Thu Feb 21 13:28:00 UTC 2013
UNAME INFO:             AIX x106 1 6 00C39B8D4C00
BACKUP OSLEVEL:         6.1.8.0
MAINTENANCE LEVEL:      6100-08
BACKUP SIZE (MB):       10400
SHRINK SIZE (MB):       3563
VG DATA ONLY:           no

vgNim:
LV NAME             TYPE       LPs     PPs     PVs  LV STATE      MOUNT POINT
lgNim               jfs2log    1       1       1    open/syncd    N/A
lvtftpb             jfs2       2       2       1    open/syncd    /tftpboot
lvExp               jfs2       2       2       1    open/syncd    /export
lvMksb              jfs2       128     128     1    open/syncd    /export/mksysb
lv6108              jfs2       128     128     1    open/syncd    /export/6108
lv6108s             jfs2       64      64      1    open/syncd    /export/6108/spot

That is all for now. Questions and Comments to see where this takes us.

---------- Post updated 02-25-13 at 11:27 PM ---------- Previous update was 02-24-13 at 11:42 PM ----------

Questions is other threads remind me the importance of clearing limits for root user.

Code:
chuser fsize=-1 cpu=-1 data=-1 stack=-1 core=-1 rss=-1 root

This sets all ulimt settings to unlimited for root in /etc/security/limits

There may be reasons to hold some limits but this is a default I use in my nim fb_scripts (first boot scripts).

Note: you may need to perform a similar command for other applications using large files: e.g., oracle, itdsldap.

If you want to remove limits for everyone the command is simple (editing files is so 1985 :wink: )
Code:
chuser fsize=-1 cpu=-1 data=-1 stack=-1 core=-1 rss=-1 default

Moderator's Comments:
Mod Comment edit by bakunin: added prefix "[Tip]" to the threads title.

Last edited by bakunin; 02-26-2013 at 06:33 PM..
These 2 Users Gave Thanks to MichaelFelt For This Post:
# 2  
Old 02-26-2013
Quote:
Originally Posted by MichaelFelt
Just remember that mksysb and savevg are just front-ends for backup.

In other words, backups on AIX are organized by volume groups. mksysb is specialized for rootvg and savevg is used for other volume groups.
Yes, but in fact it is the other way round: a carefully designed system organises data which are logically related (like, for instance, data used by one application) into the same volume group. These groups of logically related data make logical items to be backed up together, which is not surprising.


Quote:
Originally Posted by MichaelFelt
Ignoring that rootvg also creates files needed to boot a system that basic content and layout is the same.
True. In fact "savevg" uses the same 4-part-layout "mksysb" does, but with the first 3 parts filled with dummy-entries. "savevg" even used to be a link to "mksysb", so this comes not as a surprise. The "mksysb"-file format is this (every part can be filled by dummy-entries):

1. boot code. Gets only written if destination file is a tape drive.
2. Installation section. contains installation commands, bosinst.data, etc.
3. TOC. A file in "inutoc" format of all the packages installed.
4. Data. The content of the volume group in backup-file-format (used to be "tar" in historic versions)

To restore a single file (directory, ...) from such a backup: always keep in mind, that the different parts are marked by a EOD on the tape. You have to skip forward to the fourth part and then use normal "restore" to pull it out of the backup-format file. IBM tape drives under AIX rewind automatically after every operation, you have to address the tape therefore with the auto-rewind feature switched off, which is done by using /dev/rmtX.1:

Code:
tctl fsf 3 /dev/rmtX.1 ; restore ...

Quote:
"Booting" is the normal interface for restoring an mksysb image. Since a file does not have a normal boot interface a nim server can be used to restore practically any mksysb image.
Yes. It is also possible to boot the system with a normal boot CD and then restore from a non-bootable "mksysb"-image - for instance one which was taken to a file and later burned on CD.

Quote:
Questions is other threads remind me the importance of clearing limits for root user.
Good idea.

Quote:
If you want to remove limits for everyone the command is simple (editing files is so 1985 :wink: )
I once heard the basic tenet of UNIX is: everything is a file. Editing these can't be so bad, can it? Whatever can be edited in a file can be scripted and automated. Try scripting one of these graphical true-colour 3-D clicky-thingies and you will instantly appreciate the old-fashioned ways. The ones, where it isn't necessary to use your mouse at 3 o'clock in the morning but a script started by "at" does that for you and mails you the outcome. But that is perhaps another issue for another thread.

I hope this helps.

bakunin
This User Gave Thanks to bakunin For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

AIX 7.2 MKSYSB Backup and Restore Best Practices?

Hello, Running AIX 7.2 on Power9 bare-metal (no LPAR and no NIM server), in the process of creating a guide on MKSYSB process. I understand that MKSYSB is a backup of the rootvg and we can exclude stuff via exclude.rootvg file, the rest of the data volumes are mapped to the system as LUNs via... (7 Replies)
Discussion started by: c3rb3rus
7 Replies

2. Red Hat

Backup / Restore

Hi, I need to back up a RH file system (96G). The files are oracle .dbf format some of which are 5G in size. I know that tar has got a size restriction of 2G so I cannot use this. Can anyone recommend an alternative way of backuping up this FS? I have been looking at dump but this... (6 Replies)
Discussion started by: Duffs22
6 Replies

3. AIX

Backup and restore

Hi experts, i got a question. i have a production server with two Volume Group(VG) which are rootvg and datavg. Both of these VGs are 256 PP SIZE. On Disaster Recovery Server (DR server) contains two empty hardisks for restoring rootvg and datavg from production server. This two hardisks are... (7 Replies)
Discussion started by: polar
7 Replies

4. AIX

AIX 5.2 Maksysb Image backup/restore

Hello, I am new to AIX, as I was primarily working on HP-UX servers. We have some production servers and a couple of lab servers. We have upgraded over 40 servers from 5.2 to 5.3 running a particular application(1) using the golden 5.3 upgraded servers copy of makesysb. We have only two... (3 Replies)
Discussion started by: dayinthelife
3 Replies

5. AIX

AIX backup and restore

Hello, Some background so you can see what I'm trying to do on AIX: In Windows its possible to partition a single hard drive into 2 separate logical paritions which may appear as a C and a D drive. It is then possible to to use 3rd party software such as Power Quest Drive Image to create a... (3 Replies)
Discussion started by: quickfirststep
3 Replies

6. AIX

AIX backup --> Linux Restore

Hi all, I have a large number of backup tapes which were originally written with the AIX "backup" command. I now need to convert these to "tar" format, but unfortunately I no longer have access to an AIX machine. I have been able to connect the old tape drive (3590) to a Linux box and it works... (2 Replies)
Discussion started by: jauru
2 Replies

7. HP-UX

F-Backup restore

Hello! i have a blank harddrive and a complete tape backup of the workstation. the backup is made with F-Backup. Now my question is: how can i restore my workstation? thanks for every idea! paul tittel hup-si (3 Replies)
Discussion started by: paultittel
3 Replies

8. AIX

Backup and restore

I have several H80 machines, all with AIX 4.3.3. On these machines I have mksysb running for rootvg backups and savevg for non-rootvg backups. I'm trying to get a list of files on the tapes, but I can't seem to do it with tar for the mksysb images. I keep getting the directory checksum errors?... (3 Replies)
Discussion started by: uXion
3 Replies

9. Solaris

Backup / restore

Hi.... everyone could help me to understand how to do a backup of my servers .. operating systems is sun solaris 8 . I have some question about .... 1) Is better backup phisical disk or partition ??? i sow the command is ufsdump 0cfu /expbck/bcksunver/c0t0d0s5 dev/dsk/c0t0d0s5 to... (4 Replies)
Discussion started by: tt155
4 Replies

10. HP-UX

HP-UX Filesystem backup/restore?

:confused: Hi Guys, I'm not new to UNIX but I am new to HP-UX. I have a proven backup and restore procedue using cpio on Solaris, however, the filesystem structure appears to be different on HP. Can anybody help me with the following questions? 1) What is the best method for performing a... (7 Replies)
Discussion started by: mybeat
7 Replies
Login or Register to Ask a Question