#!/sbin/runscript
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
opts="${opts} reload"
APACHE2="/usr/local/apache/bin/httpd"
depend() {
need net
use mysql dns logger netmount postgresql
after sshd
}
start() {
ebegin "Starting apache2"
${APACHE2} ${APACHE2_OPTS} -k start
eend $?
}
stop() {
ebegin "Stopping apache2"
${APACHE2} ${APACHE2_OPTS} -k stop
eend $?
}
reload() {
if ! service_started "${myservice}" ; then
eerror "Apache is not running! Please start it before trying to reload it."
else
ebegin "Reloading apache2"
${APACHE2} ${APACHE2_OPTS} -k graceful
eend $?
fi
}
#!/sbin/runscript
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
opts="${opts} reload"
APACHE2="/usr/local/apache/bin/httpd"
depend() {
need net
use mysql dns logger netmount postgresql
after sshd
}
start() {
ebegin "Starting apache2"
${APACHE2} ${APACHE2_OPTS} -k start
eend $?
}
stop() {
ebegin "Stopping apache2"
${APACHE2} ${APACHE2_OPTS} -k stop
eend $?
}
reload() {
if ! service_started "${myservice}" ; then
eerror "Apache is not running! Please start it before trying to reload it."
else
ebegin "Reloading apache2"
${APACHE2} ${APACHE2_OPTS} -k graceful
eend $?
fi
}
/etc/init.d/httpd: line 4:
: command not found
/etc/init.d/httpd: line 6:
: command not found
/etc/init.d/httpd: line 8:
: command not found
/etc/init.d/httpd: line 9: syntax error near unexpected token `{
'
/etc/init.d/httpd: line 9: `depend() {
'
Si apache est "already running" aucun soucis, regarde les autres lignes.acamar a dit:Bon je fait avec Filezilla et Notepad++.
Pour “/usr/local/apache/bin/httpd -k start” ça me donne “httpd (pid 8617) already running”, je ne sais pas que c'est ok ?
Mais sinon y a pas moyen de réinstaller Apache en conservant la configs, les sites etc ?
Encore 1000 merci.
Oui je sais ça il faut surement changer un jour. En fait j'ai fait confusion c'est une connexion SFTP (SSH) pas FTPS (TLS/SSL) pour se connecter en Root. Merci pour tout Julia.Julia41 a dit:Filezilla n'est pas sécurisé car il stock ton mot de passe en clair (je ne referais pas le détail ici une énième fois), mais bref c'est dangereux
acamar a dit:Ah j'ai pas vu, WinSCP est aussi open source ?
The application is protected by GNU General Public Licence.