Controla Daemon do ProFTP
Publicado por Thiago M 28/12/2005
[ Hits: 6.047 ]
Script que executa Start, Stop, Restart e Status do daemon do proftp.
#!/bin/sh
# chkconfig: 345 20 80
# description: Start/Stop firebird database server
#
# This file belongs in /etc/init.d where it will be run
# on system startup and shutdown to start the background
# Firebird/interbase database server daemon
# WARNING: in a real-world installation, you should not put the
# SYSDBA password in a publicly-readable file.
# Eventually this file should not need to contain any passwords.
# as root user alone should be sufficient privledge to stop/start
# the server.
# Check the file is there and is executable.
[ -x /usr/local/sbin/proftpd ] || exit 0
# See how we were called.
case "$1" in
start)
echo -n "Starting ProFTP Daemon: "
/usr/local/sbin/proftpd
echo "done."
RETVAL=$?
;;
restart|reload)
$0 stop
$0 start
RETVAL=$?
;;
stop)
echo -n "Stopping ProFTP Daemon: "
if ps -e | grep proftpd > /dev/null
then
killall proftpd
fi
echo "done."
RETVAL=0
;;
status)
echo -n "ProFTP Daemon Status ..."
if ps -e | grep proftpd> null
then
echo "Running"
else
echo "Stoped"
fi
;;
*)
echo "Usage: rc.proftpd {start|stop|restart|status}"
exit 1
esac
exit $RETVAL
Script para Criar/Modificar Usuarios No Ldap + Samba
iptables geral com roteamento de portas
Scritp de Firewall com Iptables
Manipulação de contas de email com o postfix
Nenhum comentário foi encontrado.
Cirurgia para acelerar o openSUSE em HD externo via USB
Void Server como Domain Control
Modo Simples de Baixar e Usar o bash-completion
Monitorando o Preço do Bitcoin ou sua Cripto Favorita em Tempo Real com um Widget Flutuante
Opções secretas em tema do Cinnamon
Como mapear unidade de rede no Linux
Como quebrar senha usando john the ripper
Alguém já testou o novo COSMIC Desktop? O que achou? (4)
Não consigo instalar distro antiga no virtualbox nem direto no hd (29)
queria saber como posso alterar a frequencia do meu ryzen 2300u pro (3)









