- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Move big file from HP-UX to Linux.
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
05-09-2007 02:56 PM
05-09-2007 02:56 PM
Move big file from HP-UX to Linux.
FTP, RCP, RSH is disabled on Linux Server.
SFTP, SRCP, SSH is disabled on HP-UX Server.
In this case how I would move this file from HP-UX to Red Hat Linux Server.
Thanks,
Gulam.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2007 03:44 PM
05-09-2007 03:44 PM
Re: Move big file from HP-UX to Linux.
Why?
> In this case how I would move this file [...]
Tape? If you don't have any common network
protocol enabled, perhaps you should consider
enabling one.
"HP-UX Server" does not describe your
environment in enough detail to determine
whether SSH is installed on your HP-UX
system, but it could be.
Similarly, "Linux Server" is not a good
description of the other system, but I'd bet
that there's an FTP client and/or server
available there.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2007 03:46 PM
05-09-2007 03:46 PM
Re: Move big file from HP-UX to Linux.
1) Enable FTP on the Linux server
2) Install and set up SSH to enable sftp and scp on the HP-UX server.
Your only other choice might be a high capacity tape and using tar to write to the tape.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2007 04:32 PM
05-09-2007 04:32 PM
Re: Move big file from HP-UX to Linux.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2007 06:31 PM
05-09-2007 06:31 PM
Re: Move big file from HP-UX to Linux.
What about NFS?
Export file system in HP-UX and mount it on Linux.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2007 07:00 PM
05-09-2007 07:00 PM
Re: Move big file from HP-UX to Linux.
if this is stable LAN (not WAN) and you need the export on the target for import purposes (not backup or so), you can directly import from source to target via LAN, if the Oracle release is identical.
Set all environment to work correctly on source. Setup (temporary) tnsames.ora on source to reach the target database.
If sqlnet.ora on the targethost has set
tcp.valid_node_checking=yes
tcp.invited_nodes=....
permit the source host (temporary) in addition and restart the listener on the target host.
$tnsping target
must work.
Adjust environment
ORACLE_SID=target
NLS_LANG=...whatever is valid for target...
check if
sqlplus system/password@target
from source can connect successfully to target database.
Do the import
imp system/password@target ....
Try a small dump of a single table first, and ensure that the testtable has all datatypes in it's fields an fill esp. the char-fields with your local common used special characters (i.e. umlauts are always troublemakers here in Germany).
Ensure that you have FLOATS and DECIMALS in the table to verify the correct resolution of the numeric delimiters like dot and comma.
If your database includes LOBS,BLOBs,CLOBS I'd prefer to have one of these in the testtable too.
NLS_NUMERIC in Environment may cause confusion with these two numbers.
1.000.000.000,00
1,000,000,000.00
Unfortunately you can not use compression in this method without RSH enabled.
Hope this helps.
Volker
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2007 11:53 PM
05-09-2007 11:53 PM
Re: Move big file from HP-UX to Linux.
The reverse is also possible : You can rsh from the linux box to the HP-UX server.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2007 06:20 PM
05-10-2007 06:20 PM
Re: Move big file from HP-UX to Linux.
2. use nfs, and if you can do that, i don't see why you couldn't just use the above instead.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2007 06:45 PM
05-10-2007 06:45 PM
Re: Move big file from HP-UX to Linux.
If I had the network band width, I'd change the rules of the game.
I'd temporarily ENABLE ssh on the HP-UX box or install secure shell from http://software.hp.com and then disable and swremove after the install.
Breaking up the file is a great idea that I'd probably get wrong.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-10-2007 11:55 PM
05-10-2007 11:55 PM
Re: Move big file from HP-UX to Linux.
Finally I ended up using NFS.
Regards,
Gulam.