- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Incorrect permissions on FTP'ed files
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
07-10-2002 06:18 AM
07-10-2002 06:18 AM
As a different user is then required to view the file they are not able to do so as they are then classed as 'others'.
How can I allow a particular user to ftp files onto a HPUX 10.20 machine with the permissions of -rw-rw-rw-, so that other users can later view the files.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2002 06:30 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2002 06:36 AM
07-10-2002 06:36 AM
Re: Incorrect permissions on FTP'ed files
Next the answer to the problem is in a umask being set by the FTP server. Not sure if your using the standard Fort knox, or a patch for 10.20 which is wu-ftpd.
If wu-ftpd the umask is set in your /etc/ftpaccess file. man ftpd for more information.
If it's Fort knox, the umask is read from the users home. look for a umask being set in one of the dot files and change to what is appropriate.
Regards,
Shannon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2002 06:47 AM
07-10-2002 06:47 AM
Re: Incorrect permissions on FTP'ed files
modify the /etc/inetd.conf file. Make the following change in that file..
ftp stream tcp nowait root /usr/lbin/ftpd ftpd -l -u 000
-u 000 will give you the -rw-rw-rw- permissions for those files.
After modifying the inetd.conf file run "inetd -c" to reconfigure the internet dameons...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2002 07:38 AM
07-10-2002 07:38 AM
Re: Incorrect permissions on FTP'ed files
All sorted now!!
I used ftp -l -u 022 and it now puts the permissions as -rw-r--r--
Thanks again.