- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: SCP from MS Windows to HPUX
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
09-04-2008 07:00 AM
09-04-2008 07:00 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-04-2008 07:13 AM
09-04-2008 07:13 AM
Re: SCP from MS Windows to HPUX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-04-2008 07:27 AM
09-04-2008 07:27 AM
Re: SCP from MS Windows to HPUX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-04-2008 07:36 AM
09-04-2008 07:36 AM
Re: SCP from MS Windows to HPUX
I believe the permissions are copied across from the Windows system to the Unix system. At least that's true for Unix to Unix copying.
Try setting the required permissions in Windows before you do the scp and see if that makes any difference.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-04-2008 07:39 AM
09-04-2008 07:39 AM
Re: SCP from MS Windows to HPUX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-04-2008 07:43 AM
09-04-2008 07:43 AM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-04-2008 07:45 AM
09-04-2008 07:45 AM
Re: SCP from MS Windows to HPUX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2008 06:16 AM
09-05-2008 06:16 AM
Re: SCP from MS Windows to HPUX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2008 06:49 AM
09-05-2008 06:49 AM
Re: SCP from MS Windows to HPUX
On the UNIX box create a script like /usr/local/bin/sftp-server.sh
In that script enter..
-bash-3.2$ cat /usr/local/bin/sftp-server.sh
#!/usr/bin/sh
umask 000
exec /opt/ssh/libexec/sftp-server
Obviously change umask to what you want.
The in /opt/ssh/etc/sshd_config (maybe different on yours) make the following change...
# override default of no subsystems
#Subsystem sftp /opt/ssh/libexec/sftp-server
Subsystem sftp /usr/local/bin/sftp-server.sh
Restart sshd... should be good to go.
Hope this helps!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2008 06:51 AM
09-05-2008 06:51 AM
Re: SCP from MS Windows to HPUX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2008 07:16 AM
09-05-2008 07:16 AM