- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ftp service
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
Discussions
Discussions
Discussions
Forums
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
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-06-2002 09:49 AM
тАО05-06-2002 09:49 AM
ftp service
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-06-2002 09:54 AM
тАО05-06-2002 09:54 AM
Re: ftp service
kill, if it is running.
Then to modify options change the file /etc/inetd.conf, then issue:
inetd -c
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-06-2002 09:57 AM
тАО05-06-2002 09:57 AM
Re: ftp service
# /usr/sbin/inetd -k
===> kill it
# /usr/sbin/inetd -l
===> start it (with logging enabled)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-06-2002 09:59 AM
тАО05-06-2002 09:59 AM
Re: ftp service
The ftp services are started by inetd daemon. You can try these things:
#inetd -c (restarts the deamon)
Or start/stop the daemon
# /sbin/init.d/inetd stop
# /sbin/init.d/inetd start
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-06-2002 10:13 AM
тАО05-06-2002 10:13 AM
Re: ftp service
/sbin/init.d/inetd start
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-06-2002 10:23 AM
тАО05-06-2002 10:23 AM
Re: ftp service
A copy of ftpd is spawned by inetd to handle client requests. When the session is closed, ftpd for that session dies.
Stopping and restarting inetd will not kill an ftpd process that is already running. Neither will using inetd -c (to re-read inetd's configuration file). Stopping inetd does however keep any new ftp sessions from being started.
If you need to stop an ftpd process, you'll have to kill it.
If you want to disable ftp service, comment out (or remove) ftpd from /etc/inetd.conf and run inetd -c.
Darrell
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-06-2002 10:35 AM
тАО05-06-2002 10:35 AM
Re: ftp service
first modify the "/etc/inetd.conf" (if neccessary) and issue the "inetd -c", then "kill" the "ftpd":
kill -15 $(UNIX95=x ps -C ftpd -o pid="")
HTH,
Wodisch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-06-2002 10:46 AM
тАО05-06-2002 10:46 AM
Re: ftp service
Stopping inetd does however keep any new ftp sessions from being started.
I had intended to say:
Stopping inetd does however keep any new ftp sessions from being started (as well as all other services under inetd's control such as telnet, rlogin, etc).
Darrell
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-06-2002 10:57 AM
тАО05-06-2002 10:57 AM
Re: ftp service
Just do the next:
# ps -ef | grep inetd
root 1201 1 0 Apr 22 ? 9:58 /usr/sbin/inetd
root 19029 16773 1 13:57:03 pts/0 0:00 grep inetd
kill the daemon:
# /usr/sbin/inetd -k
restart the daemon:
# /usr/sbin/inetd -l
check if the daemon is up again:
# ps -ef | grep inetd
root 1201 1 0 Apr 22 ? 9:58 /usr/sbin/inetd
root 19029 16773 1 13:57:03 pts/0 0:00 grep inetd
That??s all ! . Remember that this daemon is the Internet Services Daemon and enable the services of (rcp,remsh,ftp, rlogin and telnet).
Best Regards !