- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Enable FTP access for specific user???
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-15-2006 10:20 PM
05-15-2006 10:20 PM
Enable FTP access for specific user???
Now I can ftp by using root but cannot use user "veron". why? anh how can to turn on this service for "veron" user.
Thanks for your prompt answers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2006 10:23 PM
05-15-2006 10:23 PM
Re: Enable FTP access for specific user???
- check /etc/ftpd/ftpusers for restrictions on this user.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2006 10:23 PM
05-15-2006 10:23 PM
Re: Enable FTP access for specific user???
Please check if such a file exists and which users are specified in this file. Remove the entry for veron from this file if present.
Also you can control ftp access using /etc/ftpd/ftpaccess - do man ftpaccess.
For this you need to have the ftpd entry in the /etc/inetd.conf as ftpd -a
do man ftpd.
regards,
Ninad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2006 10:29 PM
05-15-2006 10:29 PM
Re: Enable FTP access for specific user???
help pls
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2006 10:35 PM
05-15-2006 10:35 PM
Re: Enable FTP access for specific user???
grep ftp /etc/inetd.conf
Regards,
Ninad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2006 10:37 PM
05-15-2006 10:37 PM
Re: Enable FTP access for specific user???
any error when you try ftp?
Check the syslog of the ftp server also
Enrico
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2006 10:42 PM
05-15-2006 10:42 PM
Re: Enable FTP access for specific user???
ftp stream tcp nowait root /usr/lbin/ftpd ftpd -l
# Before uncommenting the "tftp" entry below, please make sure
# that you have a "tftp" user in /etc/passwd. If you don't
# have one, please consult the tftpd(1M) manual entry for
tftp dgram udp wait root /usr/lbin/tftpd tftpd\
for your further info, I can ftp by root but veron
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2006 10:47 PM
05-15-2006 10:47 PM
Re: Enable FTP access for specific user???
Also what is the error message logged to /var/adm/syslog/syslog.log when your ftp login fails ?
Regards,
Ninad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2006 02:47 PM
05-16-2006 02:47 PM
Re: Enable FTP access for specific user???
ftp 15.76.14.5
Connected to 15.76.14.5.
220 hpux01 FTP server (Version 1.1.214.6 Wed Feb 9 08:03:34 GMT 2000) ready.
User (15.76.14.5:(none)): veron
530 User veron access denied...
Login failed.
ftp>
Pls help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2006 03:17 PM
05-16-2006 03:17 PM
Re: Enable FTP access for specific user???
did you check the /etc/shells? which should include the default shell for "veron"
GOOD LUCK!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2006 03:30 PM
05-16-2006 03:30 PM
Re: Enable FTP access for specific user???
Unlucky, there are no shells:
ll /etc/shell*
/etc/shell* not found
Veron
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2006 04:56 PM
05-16-2006 04:56 PM
Re: Enable FTP access for specific user???
ftp stream tcp nowait root /usr/lbin/ftpd ftpd -l -a
Tell inetd to reread its configuration file so the change takes effect:
/usr/sbin/inetd -c
---> could u pls check is there any entry in inetd.conf file like "-a" if it is then its reading ftp access file and we have to add this user there.
Once u confirm it I can post the procedure for the same.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2006 06:02 PM
05-16-2006 06:02 PM
Re: Enable FTP access for specific user???
# grep veron /etc/passwd | cut -d : -f 7 > /etc/shells
GOOD LUCK!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-16-2006 06:26 PM
05-16-2006 06:26 PM
Re: Enable FTP access for specific user???
Veron