Must restore data to DR server


 
Thread Tools Search this Thread
Operating Systems AIX Must restore data to DR server
# 8  
Old 11-25-2008
Quote:
Originally Posted by pobman
was not sure about the PP though how can I tell what I should use? So I left it as 32MB
When a disk is added to a VG it is divided in parts the size of PPsize.

So you can tell by applying LVM restrictions: a single disk can hold max. 1019 PPs. If you have disks approximately 32GB in size you can go with a PP size of 32MB, arriving at ~1000 PPs per disk. If your disks are considerably larger than this you would only be able to use the first 32GB (1019x32MB to be exact) of the disk, losing the rest of it.

Since it is a good idea of leaving room for expansion everywhere consider using a PP size which divides the disk in 200-500 parts. For example: for 72GB disks use a PP size of 256MB giving ~300 PPs. This would allow for the use of disks up to 260GB without losing space.

I hope this helps.

bakunin
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Script to automate restore data and root mirror in Solaris 10

Hi Folks, I have taken a backup of root filesystem with tar. Please help me to write a ksh script to automate restoration and root mirror in solaris 10. Thanks in advance. (1 Reply)
Discussion started by: wills
1 Replies

2. Emergency UNIX and Linux Support

Dead server, need to restore few files

Hi, One of my Linux server running Redhat version 3 is dead. I already build the new server but I need to get few of the license files from the old server. Currently, I booted the old server using the CDROM. But when I go to /mnt/sysimage/var, I don't see any of files? I also went to... (4 Replies)
Discussion started by: samnyc
4 Replies

3. Solaris

Restore a server from a ufsdump

Hi guys i tried to restore a server from a ufsdump. For your information, the ufsdump was created on a v440 and i have to restore it to a v240... is it supported? should it work? don't know but i try! the problem is after restoring the filesystem, modify the vfstab, system file and install... (5 Replies)
Discussion started by: beta17
5 Replies

4. SCO

cpio Backup and restore to spare server fails

Our company purchased a spare HP ML350 server - identical to current one in use to act as minimal downtime replacement should the inevitable happen. After install of OS 5.0.7 and restore of cpiobackup I get this message: -: Syntax error: Hostname= $inexpected The SCO licence policy... (4 Replies)
Discussion started by: moondogi
4 Replies

5. HP-UX

restore data after system crash

Hi all, I have a server running HP-UX 11i V1 (11.11). We had a problem with the system disk which cannot boot and the recovery with the CD failed too. the only solution was to re-install the system on a new disk. The problem now is to get access to the data which are on other disks, not... (2 Replies)
Discussion started by: aribault
2 Replies

6. Shell Programming and Scripting

SFTP to server, pulling data and removing the data

Hi all, I have the following script, but are not too sure about the syntax to complete the script. In essence, the script must connect to a SFTP server at a client site with username and password located in a file on my server. Then change to the appropriate directory. Pull the data to the... (1 Reply)
Discussion started by: codenjanod
1 Replies

7. AIX

mksysb restore - Wrong OS level for restore

Hi all, I am still working on my mksysb restore. My latest issue is during an alt_disk_install from tape I got the following error after all the data had been restored. 0505-143 alt_disk_install: Unable to match mksysb level 5.2.0 with any available boot images. Please correct this... (0 Replies)
Discussion started by: pobman
0 Replies

8. UNIX for Dummies Questions & Answers

Backup user from one server and restore to another

Hi. I have a situation here where I need to backup a users' home directory and restore onto another server. The issue here is that both servers have different operating systems and I am looking for advices on how to proceed. The source server operating system is Tru64 v5.1, and here's the output... (1 Reply)
Discussion started by: fidodido
1 Replies
Login or Register to Ask a Question
nameserv::auto(n)					       Name service facility						 nameserv::auto(n)

__________________________________________________________________________________________________________________________________________________

NAME
nameserv::auto - Name service facility, Client Extension SYNOPSIS
package require Tcl 8.4 package require nameserv::auto ?0.3? package require nameserv _________________________________________________________________ DESCRIPTION
Please read the document Name service facility, introduction first. This package provides the exact same API as is provided by package nameserv, i.e the regular name service client. It differs from the for- mer by taking measures to ensure that longer-lived data, i.e. bound names, continuous and unfulfilled async searches, survive the loss of the connection to the name server as much as is possible. This means that the bound names and continuous and unfulfilled async searches are remembered client-side and automatically re-entered into the server when the connection comes back after its loss. For bound names there is one important limitation to such restoration: It is pos- sible that a name of this client was bound by a different client while the connection was gone. Such names are fully lost, and the best the package can and will do is to inform the user of this. API
The user-visible API is mainly identical the API of nameserv and is therefore not described here. Please read the documentation of name- serv. The differences are explained in the sections OPTIONS and EVENTS. OPTIONS
This package supports all the option of package nameserv, and one more. The additional option allows the user to specifies the time inter- val between attempts to restore a lost connection. -delay milliseconds The value of this option is an integer value > 0 which specifies the interval to wait between attempts to restore a lost connection, in milliseconds. The default value is 1000, i.e. one second. EVENTS
This package generates all of the events of package nameserv, and two more. Both events are generated for the tag nameserv. lost-name This event is generated when a bound name is truly lost, i.e. could not be restored after the temporary loss of the connection to the name server. It indicates that a different client took ownership of the name while this client was out of contact. The detail information of the event will be a Tcl dictionary containing two keys, name, and data. Their values hold all the informa- tion about the lost name. re-connection This event is generated when the connection to the server is restored. The remembered data has been restored when the event is posted. The event has no detail information. DESIGN
The package is implemented on top of the regular nameservice client, i.e. package nameserv. It detects the loss of the connection by lis- tening for lost-connection events, on the tag nameserv. It reacts to such events by starting a periodic timer and trying to reconnect to the server whenver this timer triggers. On success the timer is canceled, a re-connection event generated, and the package proceeds to re-enter the remembered bound names and continous searches. Another loss of the connection, be it during or after re-entering the remembered information simply restarts the timer and subsequent reconnection attempts. BUGS, IDEAS, FEEDBACK This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category nameserv of the Tcllib SF Trackers [http://sourceforge.net/tracker/?group_id=12883]. Please also report any ideas for enhancements you may have for either package and/or documentation. SEE ALSO
nameserv(n) KEYWORDS
automatic, client, name service, reconnect, restore COPYRIGHT
Copyright (c) 2007-2008 Andreas Kupries <andreas_kupries@users.sourceforge.net> nns 0.3 nameserv::auto(n)