Activation apache 2.0.54
ykolb
Messages postés
38
Statut
Membre
-
lami20j Messages postés 21644 Statut Modérateur, Contributeur sécurité -
lami20j Messages postés 21644 Statut Modérateur, Contributeur sécurité -
bonjour,
j'ai suivi le process d'install de apache.2 sur redhat.
En gros j'ai fait ca.
tar -zxvf httpd-2.0.54.tar.gz
cd httpd-2.0.54
./configure --prefix=/usr/local/apache2 --enable-so
make
make install
tout c bien deroule.
Jai ensuite modifie le fichier /etc/init.d/httpd pour qu'il pointee vers mon nouveau repertoire /usr/local/apache2.
# Path to the apachectl script, server binary, and short-form for messages.
#apachectl=/usr/sbin/apachectl
apachectl=/usr/local/apache2/bin/apachectl
#httpd=/usr/sbin/httpd
httpd=/usr/local/apache2/bin/httpd
prog=httpd
RETVAL=0
Mais quand j'arrete httpd stop puis redemarre , et ben j'ai toujours l'ancienne version apache 2.0.40 ??
Je ne comprends pas pourquoi.
De l'aide svp.
# httpd -v
Server version: Apache/2.0.40
Server built: Sep 4 2002 17:20:34
j'ai suivi le process d'install de apache.2 sur redhat.
En gros j'ai fait ca.
tar -zxvf httpd-2.0.54.tar.gz
cd httpd-2.0.54
./configure --prefix=/usr/local/apache2 --enable-so
make
make install
tout c bien deroule.
Jai ensuite modifie le fichier /etc/init.d/httpd pour qu'il pointee vers mon nouveau repertoire /usr/local/apache2.
# Path to the apachectl script, server binary, and short-form for messages.
#apachectl=/usr/sbin/apachectl
apachectl=/usr/local/apache2/bin/apachectl
#httpd=/usr/sbin/httpd
httpd=/usr/local/apache2/bin/httpd
prog=httpd
RETVAL=0
Mais quand j'arrete httpd stop puis redemarre , et ben j'ai toujours l'ancienne version apache 2.0.40 ??
Je ne comprends pas pourquoi.
De l'aide svp.
# httpd -v
Server version: Apache/2.0.40
Server built: Sep 4 2002 17:20:34
A voir également:
- Activation apache 2.0.54
- Clé d'activation windows 10 - Guide
- Apache open office gratuit - Télécharger - Suite bureautique
- Clé activation office 2010 gratuit - Télécharger - Sécurité
- Mas activation - Accueil - Windows
- Telecharger windows 10 gratuit avec clé d'activation - Accueil - Mise à jour
1 réponse
Salut,
Jai ensuite modifie le fichier /etc/init.d/httpd pour qu'il pointee vers mon nouveau repertoire
Donc tu veux dire que t'as modifié le fichier de l'ancienne version pour qu'il pointe vers la nouvelle version.
Essaye plutôt de copier le fichier apachectl de la nouvelle version :
Jai ensuite modifie le fichier /etc/init.d/httpd pour qu'il pointee vers mon nouveau repertoire
Donc tu veux dire que t'as modifié le fichier de l'ancienne version pour qu'il pointe vers la nouvelle version.
Essaye plutôt de copier le fichier apachectl de la nouvelle version :
cp -v /usr/local/apache2/bin/apachectl /etc/init.d/httpd