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
03-03-2002 12:27 AM
03-03-2002 12:27 AM
ftpd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2002 01:24 AM
03-03-2002 01:24 AM
Re: ftpd
the ftp server ist usualy startet by inetd
take a look in the file /etc/inetd.conf (should be a line like "ftp stream tcp nowait root /usr/sbin/tcpd in.ftpd") or in the sam gui.
best regards
patrick
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2002 02:02 AM
03-03-2002 02:02 AM
Re: ftpd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2002 03:51 AM
03-03-2002 03:51 AM
Re: ftpd
If your ftp is configured correctly in /etc/inetd you will not see the daemon on the system until somebody try to fto in the system, at that moment only the driver will be started.
Try to connect to your system with ftp, if it's not working then you have a problem with your configuration, if it's working, then you will be able to see the ftp daemon with ps -ef, until the connection is terminated and the daemon will time out and close itself.
Luc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-03-2002 04:09 AM
03-03-2002 04:09 AM
Re: ftpd
netstat -a |grep ftp
you should see that ftp is listening.
As ftpd is a subprocess of inetd you can only see inetd running when you do a ps unless there is an active ftp session in progress.
As the others have mentioned /etc/inetd.conf is the controlling force here tho there are also a few permission things you may need to do depending upon your requirements and your OS. You will probably need a /home/ftp directory and maybe an ftp user. inetd -c will reread your inetd.conf without having to reboot.
Ron
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2002 10:37 PM
03-06-2002 10:37 PM
Re: ftpd
Cheers,
- Andy Gray