- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- permission question
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-18-2001 07:33 AM
05-18-2001 07:33 AM
permission question
I am trying to ftp some files from one system to another and I am getting a permission denied message. The file has 755 permission and I am the owner of the file. Any help will be greatly appreciated.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2001 07:39 AM
05-18-2001 07:39 AM
Re: permission question
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2001 07:46 AM
05-18-2001 07:46 AM
Re: permission question
You need to check the permissions of the destination directory on the remote end.
You will need write permission in it and at least search permission for the directory path down to it.
Obviously, you must look at this from the perspective of the user you are ftp'ed in as.
Regards, Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2001 07:50 AM
05-18-2001 07:50 AM
Re: permission question
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2001 07:56 AM
05-18-2001 07:56 AM
Re: permission question
Make the following test :
- Keeps in your mind the old permissios of the destination directory.
- Change the permissions of the destination directory to 777 ( chmod 777 . - in the destination directory.
After this , try tranfers files. OK.
Later, return for the original permissions.
I hope help you.
Regards,
Abel Berger
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2001 08:02 AM
05-18-2001 08:02 AM
Re: permission question
'ftp' returns error numbers and text. What number (should be a 3-digit one) are you getting if you do the transfer interactively?
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-18-2001 08:16 AM
05-18-2001 08:16 AM
Re: permission question
# chmod -R 755 testdir
# ftp server
ftp> pwd
257 "/home/fhalili/testdir" is current directory.
ftp> lcd /tmp
Local directory now /tmp
ftp> get top1.txt
200 PORT command successful.
150 Opening BINARY mode data connection for top1.txt (1902 bytes).
226 Transfer complete.
1902 bytes received in 0.00 seconds (3829.74 Kbytes/s)
ftp> bye
221 Goodbye.
- fnhalili