FTP vs. Mount


 
Thread Tools Search this Thread
Operating Systems Solaris FTP vs. Mount
# 1  
Old 09-08-2006
FTP vs. Mount

I need to try to document the resources used when ftping files from server a to server b verses just mounting the file system from server a to server b and reading the files directly. We're copying a database from server a to server b and the current process is to copy each table to a flat file, ftp the flat files to server b and copy the flat files into the database on server b. I think we could just do a database backup of the database on server a to a file system that is mounted on server b and use that backup to load the database on server b. This database is about 30G in size. Currently the ftp process takes about 18 hours to unload, ftp, and load the database. The mount process should take less than 2 hours to backup and load the database.
Like I say I need to document the resources used on server a. It's not a matter of speed but a question of what impact this new process could have on server a. Any links to information or tests I could run to document this?

Thanks.
# 2  
Old 09-08-2006
That entirely depends on what you are running and what hardware you have. This sounds to me like a lab project, where you set up a server A and a server B exactly how they are in in production, including network, and do a few runs using ftp then a few runs using NFS, all while checking what's happening with the systems.
# 3  
Old 09-12-2006
Quote:
Originally Posted by System Shock
That entirely depends on what you are running and what hardware you have. This sounds to me like a lab project, where you set up a server A and a server B exactly how they are in in production, including network, and do a few runs using ftp then a few runs using NFS, all while checking what's happening with the systems.
If only we had the luxury of such a lab. I can run some tests on the production environment in the off hours however. Aside from looking at iostat, vmstat, and netstat are there any other utilities I can use that would demonstrate what is happening with the system?
# 4  
Old 09-13-2006
prstat ... you may want to install top -you can get as a package from sunfreeware- which gives you a nice view of all 4 stat commands.
# 5  
Old 09-13-2006
vdbench, sar, top, and Dtrace if you're running 5.10
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

How to create a new mount point with 600GB and add 350 GBexisting mount point? IN AIX

How to create a new mount point with 600GB and add 350 GBexisting mount point Best if there step that i can follow or execute before i mount or add diskspace IN AIX Thanks (2 Replies)
Discussion started by: Thilagarajan
2 Replies

2. Shell Programming and Scripting

Script to mount nas-share using generated credentials (mount EC 13,32)

Heyas At home i have 1 nas with 3 shares, of which i used to mount 2 of them using a script with hardcoded password and username in it. EDIT: Turns out, its not the script, but 'how i access' the nas share.. (-o user=XY,password=... VS. -o credentials=...). Figured about credential files,... (0 Replies)
Discussion started by: sea
0 Replies

3. HP-UX

[Solved] Unable to rename file in ftp server .Net:FTP perl

Hello All, I am trying to connect to ftp server and get the files. Also i need to rename the file in other ftp dir. rename method is not allowing me to rename the file in other dir. When i tried copy command by using net::FTP:FILE then perl says it is not installed. Can some body help me to... (2 Replies)
Discussion started by: krsnadasa
2 Replies

4. IP Networking

Can't see home folder on one NFS mount but can in another mount on another share

Hello, I have a few Ubuntu 9.10 laptops I'm trying to learn NFS sharing with. I am just experimenting on this right now, so no harsh words about the security of what I'm playing with, please ;) Below are the configs /etc/exports on host /home/woodnt/Homeschool... (2 Replies)
Discussion started by: Narnie
2 Replies

5. UNIX for Advanced & Expert Users

mount -t cifs permission denied by mount -t smbfs works fine

I am having trouble mounting with cifs, but mounting the exact same command with smbfs works fine. The share is on another samba server and is set to full public guest access. # mount -t cifs //servername/sharename /mnt/temp -o password="" mount error 13 = Permission denied Refer to the... (3 Replies)
Discussion started by: humbletech99
3 Replies

6. Shell Programming and Scripting

Automated FTP script using .netrc to multiple FTP servers

Hi all, I'm using the following script to automated ftp files to 1 ftp servers host=192.168.0.1 /usr/bin/ftp -vi >> $bkplog 2>&1 <<ftp open $host bin cd ${directory} put $files quit ftp and the .netrc file contain machine 192.168.0.1 login abc... (4 Replies)
Discussion started by: varu0612
4 Replies

7. Shell Programming and Scripting

passing parameter to ftp script from output of another ftp

Hi, I have a ftp script which first gets all the file names and echo's the latest file. I'm using another ftp command sets to get the file name given by first ftp. The problem is the parameter is not accepted by second ftp. The error message i'm getting is > Rename Temp File calloc:ICMP... (5 Replies)
Discussion started by: ammu
5 Replies

8. UNIX for Advanced & Expert Users

Using FTP to check whether file is completely FTP... plz find the description below

Hi, We have some clients who will place huge files in to one of the remote server. And the shell script written in our local server to retrieve client files (using FTP) placed on one of the remote server of ours by clients. My question Is there any FTP command/script to check from my local... (1 Reply)
Discussion started by: nmsrao
1 Replies

9. HP-UX

MOUNT FTP 11iv2

Hi Gurus, Is there any module like FUSE to mount a ftp dir on HP-UX?? Please Help. Vouchy (0 Replies)
Discussion started by: vouchy
0 Replies

10. UNIX for Dummies Questions & Answers

how to mount a hotswap scsi drive on a solaris 2.6 netra box using the mount command?

Hi... question is this: How do I mount an LVD hotswap scsi drive in bay #2 on a netra using the mount command? volmgt doesn't seem to mount it and/or I don't know how to view the drives data if it's formatted which it may not be. This drive is not new out of the box so I'm not sure. ... (4 Replies)
Discussion started by: soulshaker
4 Replies
Login or Register to Ask a Question