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-20-2001 08:42 AM
07-20-2001 08:42 AM
FTP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2001 08:54 AM
07-20-2001 08:54 AM
Re: FTP
Put following two line in comment on
/etc/services and /etc/inetd.conf files respectively.
ftp 21/tcp
ftp stream tcp nowait root /usr/lbin/ftpd ftpd -l
then
#/usr/sbin/inetd -c (this will reread your configuration and stop the ftp. reverse the step and reread the configuration that will start the ftpd).
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2001 08:54 AM
07-20-2001 08:54 AM
Re: FTP
'inetd' is the controller of Internet services (ftp, rcp, remsh, rlogin, and telnet). It must be running before hosts can connect using these services.
To stop the 'inetd' daemon you would do this:
# /usr/sbin/inetd -k
Of course, that would prohibit the other services from running too.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2001 08:57 AM
07-20-2001 08:57 AM
Re: FTP
ftpd expects to be started by inetd.
To stop it you would need to edit /etc/inetd.conf and comment the ftp line out with a '#' as the first character and then do an init q and finally kill all the ftpd processes.
To start you would need to remove the '#' and issue an init q.
You could script all of this to then make a sart/stop ftpd command.
Regards, Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-20-2001 08:59 AM
07-20-2001 08:59 AM
Re: FTP
I'm an idiot, I meant 'inetd -c' rather than 'init q' to force a reread on inetd.conf