- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: ftp stop / start
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
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
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
тАО04-29-2002 03:20 PM
тАО04-29-2002 03:20 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-29-2002 03:24 PM
тАО04-29-2002 03:24 PM
SolutionThis question is better asked in the linux forum:
http://forums.itrc.hp.com/cm/FamilyHome/1,,118,00.html
But we will also need to know the linux "flavor" (ie redhat, mandrake, ...) and version number.
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-29-2002 03:27 PM
тАО04-29-2002 03:27 PM
Re: ftp stop / start
The 'ftpd' daemon is normally started by 'inetd' (see 'man inetd'). As such, you can restart it's services (and here, ftp) by doing:
# inetd -c
You should have an entry in /etc/inetd.conf that looks like:
ftp stream tcp nowait root /usr/lbin/ftpd ftpd -l
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-29-2002 03:34 PM
тАО04-29-2002 03:34 PM
Re: ftp stop / start
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-29-2002 06:35 PM
тАО04-29-2002 06:35 PM
Re: ftp stop / start
1. Once you install any ftp (wu-ftpd) on this version of linux you can find an entry in
/etc/xinetd.d/*
for wu-ftp the script look like as follows
---------------------------------
service ftp
{
socket_type = stream
wait = no
user = root
server = /usr/sbin/in.ftpd
server_args = -l -a
log_on_success += DURATION USERID
log_on_failure += USERID
nice = 10
disable = no
}
To enable during startup set
"disable = no" it will automatically start. If you want to disable make this switch value to yes. and restart the xinetd service.
Hope you get ur answer.
-Niraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-29-2002 06:42 PM
тАО04-29-2002 06:42 PM
Re: ftp stop / start
If you have used ftpshut then it will create the two lock files
/var/ftp/etc/shutmsg
/etc/shutmsg
To restart either use the command
# ftprestart
or do the following
# rm /var/ftp/etc/shutmsg
# rm /etc/shutmsg
# ps -aef |grep xinetd
# kill -HUP
--Niraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-29-2002 11:53 PM
тАО04-29-2002 11:53 PM
Re: ftp stop / start
What kind of ftp product do you use ?
If this is the standard one, then it's inside the inetd on xinetd (more en more common on linux boxes).
If this is not the standard (the command ftpshut means probably it),
then you have another product like proftpd or something like that. the start and shut is a specific command ! See the doc of your product !!
hope it may help .
regards
benoit