Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#1 Le 23/12/2015, à 18:28

wawadelanorville

Installation PHP5 sous Ubuntu 14.04

Bonjour à tous
Je tente de reconfigurer mon serveur LAMP qui ne fonctionnait plus depuis que je suis passé de Ubuntu 12.04 sur Ubuntu 14.04
J'ai actuellement réussi, grâce à la documentation et au forum, à reconfigurer Apache2 pour la partie "connexion localhost", lien symbolique de mon répertoire de travail avec /var/www/html, correction de l'erreur 403....
Mon serveur MySql fonctionne

Dernier problème : mon code Php n'est plus interprété.
Je tente donc de reconfigurer PHP. J'ai commencer à appliquer la méthode disponible dans la documentation et qui repose sur la mise à jour de sources.list, apt-get update, apt-get -y upgrade, install de Git...
La procédure préconisée plante sur la construction des dépendances "apt-get -y build-dep php5 php5-mcrypt.
J'ai le même problème avec la méthode de remidoubi du 4/6/2014 : la procédure plante sur apt-get install php5 :

"les paquets suivants contiennent des dépendances non satisfaites : libapache2-mod-php5, etc...Impossible de corriger les paquets défectueux sont en mode "garder en l'état"

Quelqu'un a-t-il une solution a ce problème ?
Comment ce fait-il qu'un simple changement de version occasionne autant de dysfonctionnement ?
Merci

Hors ligne

#2 Le 24/12/2015, à 00:05

Kerrigan

Re : Installation PHP5 sous Ubuntu 14.04

A mon avis tu as un mélange de vieux paquet avec des paquets plus récent et ça pose des problèmes a cause de ça.

tu peux essayer de faire un :

sudo apt-get -f install

mais a mon avis ça va rien changer.

tu es sûr que la mise a niveau de la 12.04 vers la 14.04 a bien été fait correctement ? tu utilises bien un "Ubuntu Server" et non un "Ubuntu" normale ?
Pour info tu n'étais pas obligé de passer en 14.04 car la 12.04 est maintenu jusqu'a 2017.

Dernière modification par Kerrigan (Le 24/12/2015, à 00:06)

Hors ligne

#3 Le 24/12/2015, à 08:25

pires57

Re : Installation PHP5 sous Ubuntu 14.04

tu as quel message d'erreur quand tu tente d’accéder a tes pages web?
retournes également les fichiers de logs apache


Utilisateur d'Archlinux, Ubuntu et Kali Linux
Administrateur système et réseau spécialisé Linux.
LinkedIn

Hors ligne

#4 Le 24/12/2015, à 09:44

vinny

Re : Installation PHP5 sous Ubuntu 14.04

Salut,

Essayes mon tuto:

Edit modération : Les sections de support ont pour fonction de poser des questions et de recevoir de l'aide, non pour assurer la promotion d'un site.
Si vous voulez valoriser votre site vous pouvez l'indiquer dans votre signature avec quelques mots d'explications.

Dernière modification par Elzen (Le 10/05/2016, à 15:53)


www.journaldunadminlinux.fr
La connaissance est la seule chose qui grandit quand on la partage

Hors ligne

#5 Le 24/12/2015, à 10:15

wawadelanorville

Re : Installation PHP5 sous Ubuntu 14.04

Merci,
Je vais me plonger dans le tutoriel de vinny

Pour kerrigan, j'utilise une version ubuntu 14.04 normale

Pour Pires57, je n'ai pas d'erreur lorsque je charge une page html. Par contre lorsque je charge une page de type index.php, le code n'est pas interprété. Cela donne à l'écran quelque chose comme cela :

'); $ligne = @mysql_fetch_array($result); $trace = $trace . ' - requete aboutie - ' . $ligne[0]; If($ligne) { mysql_close(); ini_set('session_use_cookies',0); session_start(); $_SESSION['user_id'] = $ligne[0]; $_SESSION['first_name'] = $ligne[1]; $_SESSION['name'] = $ligne[2]; $_SESSION['administration'] = $ligne[3]; header("Location: http://". $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']) . "/procedures/ouverture.php?".SID); exit(); } Else { mysql_close(); echo ''; echo 'Votre authentification a échoué - ', $_POST['user'], ' ' , $_POST['PW']; //If ($erreur != '') //{ //echo '
', $erreur; //} } } Else { echo ''; echo 'Saisie incorrecte'; require('./html/authentification.htm'); } } Else { echo ''; echo 'Accès contrôlé sur ce site - Identifiez vous'; //echo ' Serveur : ', $_SERVER['HTTP_HOST'], ' répertoire : ', dirname($_SERVER['PHP_SELF']); require('./html/authentification.htm'); } echo ''; ?> 

et le code source fait ressortir toutes les syntaxes php en rouge :

<?php
#-- Listing index.php
//lancer la procédure d'authentification

function rapport_erreurs($numero, $message)
{
global $erreur;
$erreur = '';
$erreur = $erreur . ' ' . $numero . ' ' . $message;
}

Ci-joint également mon dernier fichier log apache

[Mon Dec 21 19:13:43.332649 2015] [mpm_event:notice] [pid 1455:tid 3074644608] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Mon Dec 21 19:13:43.332688 2015] [core:notice] [pid 1455:tid 3074644608] AH00094: Command line: '/usr/sbin/apache2'
[Mon Dec 21 21:31:06.851830 2015] [mpm_event:notice] [pid 1455:tid 3074644608] AH00491: caught SIGTERM, shutting down
[Wed Dec 23 17:39:45.737651 2015] [mpm_event:notice] [pid 1452:tid 3074464384] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Wed Dec 23 17:39:45.760056 2015] [core:notice] [pid 1452:tid 3074464384] AH00094: Command line: '/usr/sbin/apache2'
[Wed Dec 23 22:12:18.476819 2015] [mpm_event:notice] [pid 1452:tid 3074464384] AH00491: caught SIGTERM, shutting down
[Thu Dec 24 09:22:15.732203 2015] [mpm_event:notice] [pid 1457:tid 3074701952] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Thu Dec 24 09:22:15.751739 2015] [core:notice] [pid 1457:tid 3074701952] AH00094: Command line: '/usr/sbin/apache2'

et à tout hasard le fichier log du 21 décembre, avant que je ne reconfigure les liens symboliques :

[Sun Dec 13 12:00:47.393218 2015] [mpm_event:notice] [pid 1493:tid 3074792064] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 13 12:00:47.393250 2015] [core:notice] [pid 1493:tid 3074792064] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 13 12:02:42.681212 2015] [mpm_event:notice] [pid 1493:tid 3074792064] AH00491: caught SIGTERM, shutting down
[Sun Dec 13 12:03:45.410199 2015] [mpm_event:notice] [pid 1496:tid 3074030208] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 13 12:03:45.463530 2015] [core:notice] [pid 1496:tid 3074030208] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 13 12:17:13.350258 2015] [authz_core:error] [pid 1500:tid 3061840704] [client ::1:45726] AH01630: client denied by server configuration: /home/webadmin/www/
[Sun Dec 13 12:17:13.461871 2015] [authz_core:error] [pid 1500:tid 3053448000] [client ::1:45726] AH01630: client denied by server configuration: /home/webadmin/www/favicon.ico
[Sun Dec 13 12:17:54.869698 2015] [authz_core:error] [pid 1500:tid 3045055296] [client ::1:45727] AH01630: client denied by server configuration: /home/webadmin/www/index.html
[Sun Dec 13 15:38:30.451559 2015] [mpm_event:notice] [pid 1496:tid 3074030208] AH00491: caught SIGTERM, shutting down
[Sun Dec 13 15:38:31.524889 2015] [mpm_event:notice] [pid 3970:tid 3074808448] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 13 15:38:31.525029 2015] [core:notice] [pid 3970:tid 3074808448] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 13 15:38:51.042115 2015] [authz_core:error] [pid 3975:tid 3062889280] [client ::1:45852] AH01630: client denied by server configuration: /home/webadmin/www/index.html
[Sun Dec 13 15:38:51.042243 2015] [authz_core:error] [pid 3975:tid 3062889280] [client ::1:45852] AH01630: client denied by server configuration: /home/webadmin/www/index.cgi
[Sun Dec 13 15:38:51.042275 2015] [authz_core:error] [pid 3975:tid 3062889280] [client ::1:45852] AH01630: client denied by server configuration: /home/webadmin/www/index.pl
[Sun Dec 13 15:38:51.042304 2015] [authz_core:error] [pid 3975:tid 3062889280] [client ::1:45852] AH01630: client denied by server configuration: /home/webadmin/www/index.php
[Sun Dec 13 15:38:51.042334 2015] [authz_core:error] [pid 3975:tid 3062889280] [client ::1:45852] AH01630: client denied by server configuration: /home/webadmin/www/index.xhtml
[Sun Dec 13 15:38:51.042362 2015] [authz_core:error] [pid 3975:tid 3062889280] [client ::1:45852] AH01630: client denied by server configuration: /home/webadmin/www/index.htm
[Sun Dec 13 16:04:28.506928 2015] [authz_core:error] [pid 3975:tid 3004140352] [client ::1:45875] AH01630: client denied by server configuration: /home/webadmin/www/index.html
[Sun Dec 13 16:06:59.188792 2015] [mpm_event:notice] [pid 3970:tid 3074808448] AH00491: caught SIGTERM, shutting down
[Sun Dec 13 16:07:00.269212 2015] [mpm_event:notice] [pid 4215:tid 3074038400] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 13 16:07:00.269376 2015] [core:notice] [pid 4215:tid 3074038400] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 13 16:07:25.375859 2015] [authz_core:error] [pid 4219:tid 3061840704] [client ::1:45880] AH01630: client denied by server configuration: /home/webadmin/www/index.html
[Sun Dec 13 16:08:11.695563 2015] [authz_core:error] [pid 4219:tid 3053448000] [client ::1:45885] AH01630: client denied by server configuration: /home/webadmin/www/index.html
[Sun Dec 13 16:25:22.825019 2015] [mpm_event:notice] [pid 4215:tid 3074038400] AH00491: caught SIGTERM, shutting down
[Sun Dec 13 16:25:23.904116 2015] [mpm_event:notice] [pid 4477:tid 3074345600] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 13 16:25:23.904258 2015] [core:notice] [pid 4477:tid 3074345600] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 13 16:26:44.860211 2015] [authz_core:error] [pid 4480:tid 3054496576] [client ::1:46009] AH01630: client denied by server configuration: /home/webadmin/www/index.html
[Sun Dec 13 16:27:11.366195 2015] [authz_core:error] [pid 4480:tid 3046103872] [client ::1:46011] AH01630: client denied by server configuration: /home/webadmin/www/home
[Sun Dec 13 16:36:30.093635 2015] [mpm_event:notice] [pid 4477:tid 3074345600] AH00491: caught SIGTERM, shutting down
[Sun Dec 13 16:36:31.173856 2015] [mpm_event:notice] [pid 4631:tid 3074562688] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 13 16:36:31.173986 2015] [core:notice] [pid 4631:tid 3074562688] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 13 16:36:54.194864 2015] [authz_core:error] [pid 4634:tid 3046103872] [client ::1:46024] AH01630: client denied by server configuration: /home/webadmin/www/index.html
[Sun Dec 13 16:37:10.248033 2015] [authz_core:error] [pid 4634:tid 3037711168] [client ::1:46026] AH01630: client denied by server configuration: /home/webadmin/www/index.html
[Sun Dec 13 16:39:10.656328 2015] [mpm_event:notice] [pid 4631:tid 3074562688] AH00493: SIGUSR1 received.  Doing graceful restart
[Sun Dec 13 16:39:10.709585 2015] [mpm_event:notice] [pid 4631:tid 3074562688] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 13 16:39:10.709613 2015] [core:notice] [pid 4631:tid 3074562688] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 13 16:39:27.297261 2015] [mpm_event:notice] [pid 4631:tid 3074562688] AH00491: caught SIGTERM, shutting down
[Sun Dec 13 16:39:28.377438 2015] [mpm_event:notice] [pid 4852:tid 3073833600] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 13 16:39:28.377576 2015] [core:notice] [pid 4852:tid 3073833600] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 13 16:39:38.961101 2015] [authz_core:error] [pid 4856:tid 3061840704] [client ::1:46030] AH01630: client denied by server configuration: /home/webadmin/www/index.html
[Sun Dec 13 16:51:21.267738 2015] [mpm_event:notice] [pid 4852:tid 3073833600] AH00493: SIGUSR1 received.  Doing graceful restart
[Sun Dec 13 16:51:21.320895 2015] [mpm_event:notice] [pid 4852:tid 3073833600] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 13 16:51:21.320926 2015] [core:notice] [pid 4852:tid 3073833600] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 13 16:52:15.719170 2015] [mpm_event:notice] [pid 4852:tid 3073833600] AH00491: caught SIGTERM, shutting down
[Sun Dec 13 16:52:16.798289 2015] [mpm_event:notice] [pid 5117:tid 3074337408] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 13 16:52:16.798414 2015] [core:notice] [pid 5117:tid 3074337408] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 13 16:52:45.474776 2015] [authz_core:error] [pid 5122:tid 3054496576] [client ::1:46135] AH01630: client denied by server configuration: /home/webadmin/www/index.html
[Sun Dec 13 16:55:34.029808 2015] [mpm_event:notice] [pid 5117:tid 3074337408] AH00493: SIGUSR1 received.  Doing graceful restart
[Sun Dec 13 16:55:34.082715 2015] [mpm_event:notice] [pid 5117:tid 3074337408] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 13 16:55:34.082744 2015] [core:notice] [pid 5117:tid 3074337408] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 13 16:55:46.398294 2015] [mpm_event:notice] [pid 5117:tid 3074337408] AH00491: caught SIGTERM, shutting down
[Sun Dec 13 16:55:47.478403 2015] [mpm_event:notice] [pid 5322:tid 3074288256] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 13 16:55:47.478542 2015] [core:notice] [pid 5322:tid 3074288256] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 13 16:56:17.413593 2015] [authz_core:error] [pid 5326:tid 3062889280] [client ::1:46142] AH01630: client denied by server configuration: /home/webadmin/www/index.html
[Sun Dec 13 17:02:09.234497 2015] [authz_core:error] [pid 5326:tid 3037711168] [client ::1:46160] AH01630: client denied by server configuration: /home/webadmin/www/aeronautique/index.php
[Sun Dec 13 17:12:08.954005 2015] [authz_core:error] [pid 5326:tid 3020925760] [client ::1:46181] AH01630: client denied by server configuration: /home/webadmin/www/index.html
[Sun Dec 13 17:17:13.303916 2015] [authz_core:error] [pid 5326:tid 3012533056] [client ::1:46308] AH01630: client denied by server configuration: /home/webadmin/www/index.html
[Sun Dec 13 17:19:45.539843 2015] [authz_core:error] [pid 5327:tid 3037711168] [client ::1:46312] AH01630: client denied by server configuration: /home/webadmin/www/index.html
[Sun Dec 13 17:20:07.143977 2015] [authz_core:error] [pid 5327:tid 3029318464] [client ::1:46314] AH01630: client denied by server configuration: /home/webadmin/www/index.html
[Sun Dec 13 17:20:16.630727 2015] [authz_core:error] [pid 5326:tid 2995747648] [client ::1:46315] AH01630: client denied by server configuration: /home/webadmin/www/index.php
[Sun Dec 13 17:27:46.647557 2015] [mpm_event:notice] [pid 5322:tid 3074288256] AH00493: SIGUSR1 received.  Doing graceful restart
[Sun Dec 13 17:27:46.654873 2015] [mpm_event:notice] [pid 5322:tid 3074288256] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 13 17:27:46.654904 2015] [core:notice] [pid 5322:tid 3074288256] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 13 17:27:56.707595 2015] [mpm_event:notice] [pid 5322:tid 3074288256] AH00491: caught SIGTERM, shutting down
[Sun Dec 13 17:27:57.773510 2015] [mpm_event:notice] [pid 6619:tid 3073821312] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 13 17:27:57.773645 2015] [core:notice] [pid 6619:tid 3073821312] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 13 17:28:29.412017 2015] [authz_core:error] [pid 6623:tid 3053448000] [client ::1:46339] AH01630: client denied by server configuration: /home/webadmin/www/index.html
[Sun Dec 13 17:37:01.752012 2015] [mpm_event:notice] [pid 6619:tid 3073821312] AH00493: SIGUSR1 received.  Doing graceful restart
[Sun Dec 13 17:37:01.805163 2015] [mpm_event:notice] [pid 6619:tid 3073821312] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 13 17:37:01.805190 2015] [core:notice] [pid 6619:tid 3073821312] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 13 17:37:18.397088 2015] [mpm_event:notice] [pid 6619:tid 3073821312] AH00491: caught SIGTERM, shutting down
[Sun Dec 13 17:37:19.478493 2015] [mpm_event:notice] [pid 6864:tid 3074341504] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 13 17:37:19.478624 2015] [core:notice] [pid 6864:tid 3074341504] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 13 17:37:57.525314 2015] [authz_core:error] [pid 6869:tid 2995747648] [client ::1:46372] AH01630: client denied by server configuration: /home/webadmin/www/index.html
[Sun Dec 13 17:40:41.764554 2015] [mpm_event:notice] [pid 6864:tid 3074341504] AH00493: SIGUSR1 received.  Doing graceful restart
[Sun Dec 13 17:40:41.817692 2015] [mpm_event:notice] [pid 6864:tid 3074341504] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 13 17:40:41.817719 2015] [core:notice] [pid 6864:tid 3074341504] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 13 17:40:47.583022 2015] [mpm_event:notice] [pid 6864:tid 3074341504] AH00491: caught SIGTERM, shutting down
[Sun Dec 13 17:40:48.665056 2015] [mpm_event:notice] [pid 7089:tid 3074816640] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 13 17:40:48.665207 2015] [core:notice] [pid 7089:tid 3074816640] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 13 17:45:45.587433 2015] [authz_core:error] [pid 7093:tid 3054496576] [client ::1:46530] AH01630: client denied by server configuration: /home/webadmin/www/index.html
[Sun Dec 13 17:48:10.706622 2015] [mpm_event:notice] [pid 7089:tid 3074816640] AH00491: caught SIGTERM, shutting down
[Sun Dec 13 17:49:02.560043 2015] [mpm_event:notice] [pid 1452:tid 3074497152] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 13 17:49:02.620084 2015] [core:notice] [pid 1452:tid 3074497152] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 13 17:53:25.805300 2015] [authz_core:error] [pid 1457:tid 3046103872] [client ::1:48215] AH01630: client denied by server configuration: /home/webadmin/www/index.html
[Sun Dec 13 18:08:27.696044 2015] [authz_core:error] [pid 1457:tid 2945391424] [client ::1:48377] AH01630: client denied by server configuration: /home/webadmin/www/index.html
[Sun Dec 13 21:32:07.603631 2015] [mpm_event:notice] [pid 1452:tid 3074497152] AH00491: caught SIGTERM, shutting down
[Mon Dec 14 19:43:43.617339 2015] [mpm_event:notice] [pid 1482:tid 3074628224] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Mon Dec 14 19:43:43.658076 2015] [core:notice] [pid 1482:tid 3074628224] AH00094: Command line: '/usr/sbin/apache2'
[Mon Dec 14 21:29:00.645369 2015] [mpm_event:notice] [pid 1482:tid 3074628224] AH00491: caught SIGTERM, shutting down
[Fri Dec 18 13:29:24.905152 2015] [mpm_event:notice] [pid 1469:tid 3074259584] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Fri Dec 18 13:29:24.926125 2015] [core:notice] [pid 1469:tid 3074259584] AH00094: Command line: '/usr/sbin/apache2'
[Fri Dec 18 13:30:40.023045 2015] [mpm_event:notice] [pid 1469:tid 3074259584] AH00491: caught SIGTERM, shutting down
[Fri Dec 18 18:21:31.111649 2015] [mpm_event:notice] [pid 1500:tid 3074312832] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Fri Dec 18 18:21:31.144690 2015] [core:notice] [pid 1500:tid 3074312832] AH00094: Command line: '/usr/sbin/apache2'
[Fri Dec 18 22:11:39.287193 2015] [mpm_event:notice] [pid 1500:tid 3074312832] AH00491: caught SIGTERM, shutting down
[Sat Dec 19 20:10:59.493329 2015] [mpm_event:notice] [pid 1524:tid 3074624128] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sat Dec 19 20:10:59.523856 2015] [core:notice] [pid 1524:tid 3074624128] AH00094: Command line: '/usr/sbin/apache2'
[Sat Dec 19 21:19:11.649720 2015] [mpm_event:notice] [pid 1524:tid 3074624128] AH00491: caught SIGTERM, shutting down
[Sat Dec 19 21:20:11.632827 2015] [mpm_event:notice] [pid 1497:tid 3073968768] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sat Dec 19 21:20:11.674283 2015] [core:notice] [pid 1497:tid 3073968768] AH00094: Command line: '/usr/sbin/apache2'
[Sat Dec 19 21:27:34.624212 2015] [mpm_event:notice] [pid 1497:tid 3073968768] AH00491: caught SIGTERM, shutting down
[Sun Dec 20 09:43:59.198305 2015] [mpm_event:notice] [pid 1484:tid 3074693760] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 20 09:43:59.239795 2015] [core:notice] [pid 1484:tid 3074693760] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 20 11:04:51.458236 2015] [mpm_event:notice] [pid 1484:tid 3074693760] AH00491: caught SIGTERM, shutting down
[Sun Dec 20 11:04:52.538779 2015] [mpm_event:notice] [pid 5003:tid 3074259584] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 20 11:04:52.538904 2015] [core:notice] [pid 5003:tid 3074259584] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 20 11:10:22.260454 2015] [authz_core:error] [pid 5008:tid 3062889280] [client ::1:55453] AH01630: client denied by server configuration: /home/webadmin/www/aeronautique/index.php
[Sun Dec 20 11:11:44.866300 2015] [authz_core:error] [pid 5007:tid 3037711168] [client ::1:55457] AH01630: client denied by server configuration: /home/webadmin/www/index.html
[Sun Dec 20 11:19:47.491600 2015] [authz_core:error] [pid 5008:tid 3020925760] [client ::1:55473] AH01630: client denied by server configuration: /home/webadmin/www
[Sun Dec 20 11:22:31.467562 2015] [authz_core:error] [pid 5008:tid 3012533056] [client ::1:55477] AH01630: client denied by server configuration: /home/webadmin/www/aeronautique/index.php
[Sun Dec 20 11:27:20.643347 2015] [mpm_event:notice] [pid 5003:tid 3074259584] AH00491: caught SIGTERM, shutting down
[Sun Dec 20 11:27:21.724620 2015] [mpm_event:notice] [pid 5402:tid 3074108032] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 20 11:27:21.724779 2015] [core:notice] [pid 5402:tid 3074108032] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 20 11:27:46.991129 2015] [authz_core:error] [pid 5406:tid 3061840704] [client ::1:55487] AH01630: client denied by server configuration: /home/webadmin/www/index.html
[Sun Dec 20 11:28:21.439831 2015] [authz_core:error] [pid 5406:tid 3045055296] [client ::1:55489] AH01630: client denied by server configuration: /home/webadmin/www/index.html
[Sun Dec 20 11:28:58.686735 2015] [authz_core:error] [pid 5407:tid 3045055296] [client ::1:55491] AH01630: client denied by server configuration: /home/webadmin/www/aeronautique/index.php
[Sun Dec 20 11:35:53.208429 2015] [mpm_event:notice] [pid 5402:tid 3074108032] AH00491: caught SIGTERM, shutting down
[Sun Dec 20 11:36:48.759937 2015] [mpm_event:notice] [pid 1493:tid 3074345600] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 20 11:36:48.795293 2015] [core:notice] [pid 1493:tid 3074345600] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 20 11:38:13.989885 2015] [authz_core:error] [pid 1497:tid 3054496576] [client ::1:40325] AH01630: client denied by server configuration: /home/webadmin/www/aeronautique/index.php
[Sun Dec 20 11:41:34.503600 2015] [authz_core:error] [pid 1497:tid 3037711168] [client ::1:40339] AH01630: client denied by server configuration: /home/webadmin/www/index.html
[Sun Dec 20 11:50:32.421949 2015] [mpm_event:notice] [pid 1493:tid 3074345600] AH00491: caught SIGTERM, shutting down
[Sun Dec 20 11:50:33.500678 2015] [mpm_event:notice] [pid 3586:tid 3074292352] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 20 11:50:33.500800 2015] [core:notice] [pid 3586:tid 3074292352] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 20 16:48:40.120228 2015] [mpm_event:notice] [pid 3586:tid 3074292352] AH00493: SIGUSR1 received.  Doing graceful restart
[Sun Dec 20 16:48:40.173223 2015] [mpm_event:notice] [pid 3586:tid 3074292352] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 20 16:48:40.173250 2015] [core:notice] [pid 3586:tid 3074292352] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 20 18:55:37.762306 2015] [mpm_event:notice] [pid 3586:tid 3074292352] AH00491: caught SIGTERM, shutting down
[Sun Dec 20 18:55:38.842727 2015] [mpm_event:notice] [pid 7113:tid 3074779776] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 20 18:55:38.842854 2015] [core:notice] [pid 7113:tid 3074779776] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 20 19:04:52.238999 2015] [mpm_event:notice] [pid 7113:tid 3074779776] AH00491: caught SIGTERM, shutting down
[Sun Dec 20 19:04:53.305889 2015] [mpm_event:notice] [pid 7323:tid 3074390656] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 20 19:04:53.306025 2015] [core:notice] [pid 7323:tid 3074390656] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 20 19:11:21.793100 2015] [mpm_event:notice] [pid 7323:tid 3074390656] AH00491: caught SIGTERM, shutting down
[Sun Dec 20 19:11:22.872731 2015] [mpm_event:notice] [pid 7477:tid 3073833600] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 20 19:11:22.872872 2015] [core:notice] [pid 7477:tid 3073833600] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 20 19:16:19.647812 2015] [mpm_event:notice] [pid 7477:tid 3073833600] AH00493: SIGUSR1 received.  Doing graceful restart
[Sun Dec 20 19:16:19.699849 2015] [mpm_event:notice] [pid 7477:tid 3073833600] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Sun Dec 20 19:16:19.699874 2015] [core:notice] [pid 7477:tid 3073833600] AH00094: Command line: '/usr/sbin/apache2'
[Sun Dec 20 21:37:57.815169 2015] [mpm_event:notice] [pid 7477:tid 3073833600] AH00491: caught SIGTERM, shutting down
[Mon Dec 21 18:53:11.308370 2015] [mpm_event:notice] [pid 1455:tid 3074644608] AH00489: Apache/2.4.7 (Ubuntu) configured -- resuming normal operations
[Mon Dec 21 18:53:11.443553 2015] [core:notice] [pid 1455:tid 3074644608] AH00094: Command line: '/usr/sbin/apache2'
[Mon Dec 21 19:13:43.279273 2015] [mpm_event:notice] [pid 1455:tid 3074644608] AH00493: SIGUSR1 received.  Doing graceful restart

Modération : merci à l'avenir d'utiliser les balises code (explications ici).

Dernière modification par cqfd93 (Le 24/12/2015, à 17:56)

Hors ligne

#6 Le 24/12/2015, à 14:10

wawadelanorville

Re : Installation PHP5 sous Ubuntu 14.04

...quelques tutoriels plus loin, il s'avère que j'ai des paquets "cassés" : php5, php5-mcrypt libapache2-mod-php5, etc....(je ne parviens pas à établir une liste fiable car synaptic n'est pas très facile d'emploi, il n'affiche aucun paquet cassé via le filtre "paquet casé", cette mention paquet cassé n'apparaît qu'après avoir sélectionné le ou les paquets à installer...)

Lorsque j'active dans synaptic l'option "Réparer les paquets cassés" j'ai un message d'erreur de type " Impossible..., paquets devant être gardés en l'état".

Je suis de plus en plus perplexe...J'ai essayé les divers technique proposés dans les tutoriles du forum pour réparer les paquets cassés...sans succès
... faut réinstaller complètement le système ?

Hors ligne

#7 Le 24/12/2015, à 14:22

vinny

Re : Installation PHP5 sous Ubuntu 14.04

J'ai l'impression que tes paquets PHP5 ce sont mal installé ou y a eu un problème durant l'installation.

Essayes de faire un sudo apt-get -f install ou un apt-get clean all.

Dernière modification par vinny (Le 24/12/2015, à 14:24)


www.journaldunadminlinux.fr
La connaissance est la seule chose qui grandit quand on la partage

Hors ligne

#8 Le 17/01/2016, à 21:06

wawadelanorville

Re : Installation PHP5 sous Ubuntu 14.04

RESOLU
Finalement j'ai réinstallé ubuntu 14.04 à partir d'une image iso gravée sur DVD
J'en ai profiter pour passer à la version 64 bits qui est quand même bien plus véloce
Après réinstallatin du serveur LAMP, j'ai retrouvé l'usage de mes scripts php.

Je pense que le passage de la version 12.04 à 14.04 a été mal géré...

Merci à tous

Hors ligne