ufsdump equivalent in linux and unix


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users ufsdump equivalent in linux and unix
# 1  
Old 01-08-2007
ufsdump equivalent in linux and unix

Hi all,

I am preparing for a worst case scenario. Say i have a production server A, should A fails ( for whatever reason), i want another server B to take over. How can i move everything from A to B? Assuming i have regular backup of A.

I've searched in the forums, and briefly came across ufsdump for solaris. What is the equivalent of the same command for linux and unix?
# 2  
Old 01-08-2007
For Linux, you can look at dump. It is like ufsdump in Solaris and will provide you with similar options.
And what do you mean by unix? As far as I know, Solaris is a unix system. So is HP-UX, and AIX and .... there's a pretty long list.
# 3  
Old 01-08-2007
hi blowtouch,

thanks for the advise.
# 4  
Old 01-08-2007
When you must have failover, you need to have the data disks on a (probably raid) file server separate from the two boxes: A & B. Then you can failover to B by simply assuring B has an identical full set of programs with the same directory structure that A had. Or environment variables to compensate.

You do this by compiling all production pushes on both A & B at the same time. The code on B sits unused until needed. You have to keep rev-levels of software the same on both boxes as well.

On failover, users login to B and away you go. Obviously, B has to have mounted the data disks before you can failover.
# 5  
Old 01-08-2007
Try Clustering and VIPs

Use a clustering technology. Something like SunCluster or VeritasCluster. They are however what you can call a more advanced topic in Unix, but it will definitly give you the failover from A ----> B with full application uptime.

If clustering isnt your thing and all you have is tapes, then just restore the tapes to the new server and make system adjustements.

Another thing you can do is have a VIP created in your environment. Have all applications point to the VIP. Make sure both servers are up and running. One taking load and the other not. Then have a job created to change the DNS entry of the VIP to point to server B should there be a failure on A.

There are a lot of ways of doing this, implementing it has to do with the comfort level and SLA's that the applications require.

I hope that helps.
-S
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Need Linux equivalent for UNIX

I have a folder called "log" which has a few sub-folders say "fda" "fd7" "fdd" "fd6 .... " I wish to fire the below command inside each subfolder starting with the folder with the latest time stamp. grep "$greptime.*exit" Prod.$(hostname).log | grep $fdrdate_new If the seach did not yield... (3 Replies)
Discussion started by: mohtashims
3 Replies

2. Red Hat

NFS_v4_fail_over_timeout equivalent in Linux

Hi, I need to mount a replicated nfs4 export on a number of AIX and Redhat hosts. To get the failover on the clients working smoothly, I need to change certain values on the AIX boxes like nfs_v4_fail_over_timeout, timeo and retrans values. Since I have no clue about Linux, I am not quite sure... (1 Reply)
Discussion started by: zxmaus
1 Replies

3. Solaris

equivalent of linux /etc/security/limits

Hi, I would like to know, how can I set limits (noproc,fsize,core, data...) to users in solaris, i.e. I want solaris counterpart/equivalent of linux /etc/security/limits.conf Thanks!! (0 Replies)
Discussion started by: kiekurt
0 Replies

4. Linux

/etc/netmasks equivalent in linux

Hi Guys, I am used to configuring DHCP on Solaris and foreach subnet added I place a corresponding entry in /etc/netmasks. I am now looking at configuring DHCP on linux, is there an equivalnet entry required somewhere or is this not needed in linux Thanks (3 Replies)
Discussion started by: eeisken
3 Replies

5. HP-UX

UNIX VI editor equivalent of LINUX

Hi All, I am comfortable working in LINUX and need equivalents for HP-UX for below mentioned, 1. We use TAB key to expand/reveal a name in LINUX. Is there any way to make this work for UNIX, where it is double escape. 2. Also can we use make use of left,down,up,right keys instead... (3 Replies)
Discussion started by: pradebban
3 Replies

6. Programming

WSAAsyncSelect equivalent for linux

Hello, I'm writing a multi-threaded socket server in C++ and I needed something like wsaasyncselect to handle messages like fd_accept, fd_read, fd_connect, fd_close. Thanks in advance. (2 Replies)
Discussion started by: lucastonon
2 Replies

7. Linux

Linux equivalent for...

I moved to a Linux system from Windows a few months ago. Most of the programs I had been using were already native to Linux (Firefox, the GIMP, Pari, etc.) and most others I found a close enough program (Crimson Editor -> gedit, Visual Studio -> KDevelop, Primo -> Morain's ECPP). Now I'm down... (1 Reply)
Discussion started by: CRGreathouse
1 Replies

8. Linux

Mksysb Equivalent For Linux?

I have experience with making bootable images of AIX systems using mksysb and wondered if there was some type of equivalent software for Linux. Or perhaps some of the folks here have alternatives or unique ideas for how they are backing up their Linux systems enabling them to recover them as... (13 Replies)
Discussion started by: scotbuff
13 Replies

9. UNIX for Advanced & Expert Users

ACF2 equivalent in Unix or Linux ?

In IBM Mainframe they have something called ACF2 rule which is essentially used to control the dataset access. It is kind of a list-based access control for mainframe datasets. Is there anything equivalent to ACF2 available in Unix ? Thanks Rabi (1 Reply)
Discussion started by: indra_saha
1 Replies

10. Linux

Linux equivalent for daemon2

Hi all... In my Unix system a program exists called "daemon2" which is responsible to enqueue program executions. For example, if I want to make the system to enqueue lpr executions for certain users, I call daemon2 with lpr as the parameter. Is there an equivalent in Linux? Thanks Jaime (0 Replies)
Discussion started by: jstuardo
0 Replies
Login or Register to Ask a Question