- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Multiple SCP Process
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2008 01:26 PM
01-08-2008 01:26 PM
Multiple SCP Process
We had script which push the files from one hpux to another hpux box throgh SCP Process.
As soon as it reach 11th connection, scp process failing to execute through unix pipe.
How do we make hpux to run as many SCP process in background?
Is there any config files needs to be changed?
Please do let me know
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2008 01:37 PM
01-08-2008 01:37 PM
Re: Multiple SCP Process
Can you post the script so suggestions can be tuned to your script.
(I assume that you know that you can use "&" at the end of the scp command line in the script. You will want to redirect error content to a well named log, so that you can tell which ouput cam from which scp command.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2008 01:41 PM
01-08-2008 01:41 PM
Re: Multiple SCP Process
nohup scp -rp username@server:directory &
like that 12 files. When i submit the same in to background, 10 process successfully executes, 11th and 12th process failed to run in background.
Is there any way to change the configuration file in HPUX to run as many scp process in background.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2008 01:48 PM
01-08-2008 01:48 PM
Re: Multiple SCP Process
scp file1 file2 file3 foo@svr1:/tmp >/tmp/scp_to_svr1.log 2>&1 &
scp file1 file2 file3 foo@svr2:/tmp >/tmp/scp_to_svr2.log 2>&1 &
scp file1 file2 file3 foo@svr3:/tmp >/tmp/scp_to_svr3.log 2>&1 &
###===================
Naturally this can be accomplished in some sort of loop. But you get the idea, yes?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2008 01:49 PM
01-08-2008 01:49 PM
Re: Multiple SCP Process
Thank you. :-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2008 01:50 PM
01-08-2008 01:50 PM