This is a discussion on how to stop ftp server in solaris within the comp.unix.solaris forums, part of the Solaris Operating System category; --> hi buddies here i have some problem how to stop ftp server in solaris without using of kill command ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| hi buddies here i have some problem how to stop ftp server in solaris without using of kill command in my system sftp server path shows as usr/local/libexec/sftp-server. there stop command not works In linux /etc/init.d/vsftpd stop command i am using if any one know plz help |
| |||
| varmagsr@gmail.com a écrit : > hi buddies > > here i have some problem > how to stop ftp server in solaris without using of kill command > > in my system sftp server path shows as usr/local/libexec/sftp-server. > there stop command not works > > > In linux /etc/init.d/vsftpd stop command i am using > > if any one know plz help > Under S10: svcs -a |grep -i ftp svcadm disable output_from_above |
| |||
| varmagsr@gmail.com wrote: > hi buddies > > here i have some problem > how to stop ftp server in solaris without using of kill command > > in my system sftp server path shows as usr/local/libexec/sftp-server. > there stop command not works > > > In linux /etc/init.d/vsftpd stop command i am using > > if any one know plz help As it's something under /usr/local it's nothing that is standard Solaris. Look in the docs for the sftp you (or someone else) have installed. |
| |||
| varmagsr@gmail.com wrote: > hi buddies > > here i have some problem > how to stop ftp server in solaris without using of kill command > > in my system sftp server path shows as usr/local/libexec/sftp-server. > there stop command not works > > > In linux /etc/init.d/vsftpd stop command i am using > > if any one know plz help > For Solaris 10 use: # svcadm disable /network/ftp I also did # svcadm disable /network/telnet For Solaris 9 and older edit the /etc/inetd.conf Look for the line: ftp stream tcp6 nowait root /usr/sbin/in.ftpd in.ftpd and then comment it out. You will need to issue a kill -HUP to the inetd process to force a re-read of the configuration file. -G |
| ||||
| On Nov 1, 11:52 pm, "Mr. G D Geen" <g...@ti.com> wrote: > varma...@gmail.com wrote: > > hi buddies > > > here i have some problem > > how to stop ftp server in solaris without using of kill command > > > in my system sftp server path shows as usr/local/libexec/sftp-server. > > there stop command not works > > > In linux /etc/init.d/vsftpd stop command i am using > > > if any one know plz help > > For Solaris 10 use: > # svcadm disable /network/ftp > > I also did > # svcadm disable /network/telnet > > For Solaris 9 and older edit the /etc/inetd.conf > Look for the line: > ftp stream tcp6 nowait root /usr/sbin/in.ftpd in.ftpd > > and then comment it out. You will need to issue a kill -HUP to the > inetd process to force a re-read of the configuration file. > Hi to all thanx for fast help here the solution i got from frnd's 1)inetadm -e ftp for enableing the ftp server 2)inetadm -d ftp for disableing the ftp server 3)svcs /network/ftp to check the status |