19 févr. 2016

[RHEL/CENTOS 7] Installer NGINX avec PHP et MySQL

Nginx [engine x] est un logiciel libre de serveur Web (ou HTTP) ainsi qu'un proxy inverse écrit par Igor Sysoev, dont le développement a débuté en 2002 pour les besoins d'un site russe à très fort trafic (Rambler). Une partie de la documentation a été traduite du russe vers l'anglais.

Ses sources sont disponibles sous une licence de type BSD.
Source : https://fr.wikipedia.org/wiki/Nginx

Nous allons ici installer NGINX avec PHP et MySQL (mariadb) sur une CentOS 7.

J'ai suivi la procédure suivante :  https://www.howtoforge.com/how-to-install-nginx-with-php-and-mysql-lemp-stack-on-centos-7
Cet article est une traduction partielle, où certains détails tel que mon environnement et mes besoins diffère de l'originale.

1 - Note préliminaires 

J'utilise une machine de test avec le hostname lemp et l'adresse IP 10.250.0.134 qui différera surement par rapport à chez vous.
Remplacez-les donc par vos paramètres propres quand cela sera nécessaire.

2 - Ajouter un dépôt additionnel

Nginx n'est pas disponible dans les dépôts de CentOS, éditez donc le fichier /etc/yum.repos.d/nginx.repo

[root@lemp ~]# vim /etc/yum.repos.d/nginx.repo
[nginx]
name = nginx repo
baseurl = http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck = 0
enabled = 1
3 - Installer MySQL (ou plutôt MariaDB)

Nous allons installer MariaDB un fork de MySQL avec la commande suivante:
[root@lemp ~]# yum install mariadb mariadb-server net-tools
On active ensuite le service "mariadb.service" et on le démarre:
[root@lemp ~]# systemctl enable mariadb.service
Created symlink from /etc/systemd/system/multi-user.target.wants/mariadb.service to /usr/lib/systemd/system/mariadb.service.
[root@lemp ~]# systemctl start mariadb.service
[root@lemp ~]#
Nous pouvons maintenant vérifier si le port 10623 (mysqld) est en écoute:
[root@lemp ~]# netstat -tap | grep mysql
tcp        0      0 0.0.0.0:mysql           0.0.0.0:*               LISTEN      11051/mysqld
Dans l'exemple ci-dessus c'est bien le cas.

Ensuite il nous faut sécuriser l'accès à mariadb en indiquant un mot de passe avec la commande suivante:
[root@lemp ~]# mysql_secure_installation
/usr/bin/mysql_secure_installation: ligne379: find_mysql_client : commande introuvable

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!

In order to log into MariaDB to secure it, we'll need the current
password for the root user.  If you've just installed MariaDB, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.

Enter current password for root (enter for none):
OK, successfully used password, moving on...

Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.

Set root password? [Y/n] <= ENTRER
New password:<= nouveaumotdepasse
Re-enter new password:<= nouveaumotdepasse
Password updated successfully!
Reloading privilege tables..
 ... Success!


By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them.  This is intended only for testing, and to make the installation
go a bit smoother.  You should remove them before moving into a
production environment.

Remove anonymous users? [Y/n] <= ENTRER
 ... Success!

Normally, root should only be allowed to connect from 'localhost'.  This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely? [Y/n] <= ENTRER
 ... Success!

By default, MariaDB comes with a database named 'test' that anyone can
access.  This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it? [Y/n] <= ENTRER
 - Dropping test database...
 ... Success!
 - Removing privileges on test database...
 ... Success!

Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now? [Y/n] <= ENTRER
 ... Success!

Cleaning up...

All done!  If you've completed all of the above steps, your MariaDB
installation should now be secure.

Thanks for using MariaDB!
[root@lemp ~]#





4 - Installer Nginx

Après l'étape 2 et donc l'ajout d'un dépôt additionnel pour nginx, il est possible d'installer nginx via yum:
[root@lemp ~]# yum install nginx
Activer et démarrer le service:
[root@lemp ~]# systemctl enable nginx.service
Created symlink from /etc/systemd/system/multi-user.target.wants/nginx.service to /usr/lib/systemd/system/nginx.service.
[root@lemp ~]# systemctl start nginx.service
En cas de pépin ...
 
Il y a des chances que vous ayez une erreur par rapport au port 80 qui serait déjà utilisé.
# service nginx start
Starting nginx: nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] still could not bind()
Cela peut indiquer qu'un autre service HTTP est lancé (par exemple apache). Dans ce cas : stopper ce service (et supprimez-le) :
systemctl stop httpd.service
yum remove httpd
systemctl disable httpd.service
et réessayez de lancer NGINX:
systemctl enable nginx.service
systemctl start nginx.service
Continuons :
Ouvrir maintenant les ports HTTP et HTTPS sur le firewall, si vous avez le firewall activer:
firewall-cmd --permanent --zone=public --add-service=http
firewall-cmd --permanent --zone=public --add-service=https
firewall-cmd --reload
Dans certains cas, on peut aussi désactiver Firewalld et SELINUX (voir mon article correspondant : http://astunix.blogspot.fr/2016/01/rhelcentos-7-desactiver-selinux-et.html)

Tester l'accès grandeur nature


On peut maintenant tester l'accès au serveur depuis une autre machine du réseau en tapant dans le navigateur : http://10.250.0.134

5 - Installer PHP5 et APC

Installons PHP avec php-fpm (PHP-FASTCGI Process Manager) et php-cli:
[root@lemp ~]# yum install php-fpm php-cli php-mysql php-gd php-ldap php-odbc php-pdo php-pecl-memcache php-pear php-mbstring php-xml php-xmlrpc php-mbstring php-snmp php-soap
Qu'est-ce qu'APC ?
APC is a free and open PHP opcode cacher for caching and optimizing PHP intermediate code. It's similar to other PHP opcode cachers, such as eAccelerator and Xcache. It is strongly recommended to have one of these installed to speed up your PHP page.

Installons d'abord les "Devlopment Tools":
yum install php-devel
yum groupinstall 'Development Tools'
Puis APC:
# pecl install apc
downloading APC-3.1.13.tgz ...
Starting to download APC-3.1.13.tgz (171,591 bytes)
.................done: 171,591 bytes
55 source files, building
running: phpize
Configuring for:
PHP Api Version: 20100412
Zend Module Api No: 20100525
Zend Extension Api No: 220100525
Enable internal debugging in APC [no] : <= ENTRER
Enable per request file info about files used from the APC cache [no] : <= ENTRER
Enable spin locks (EXPERIMENTAL) [no] : <= ENTRER
Enable memory protection (EXPERIMENTAL) [no] : <= ENTRER
Enable pthread mutexes (default) [no] : <= ENTRER
Enable pthread read/write locks (EXPERIMENTAL) [yes] : <= ENTRER
building in /var/tmp/pear-build-rootVrjsuq/APC-3.1.13
......
Ensuiter, éditer /etc/php.ini
# vim /etc/php.ini
et modifier la ligne suivante
;cgi.fix_pathinfo=1
par
cgi.fix_pathinfo=0
et ajouter la ligne suivant à la fin du fichier :
extension=apc.so
De plus, pour parer à des messages d'erreurs concernant la timezone tel que :
[21-July-2014 10:07:08] PHP Warning: phpinfo(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Europe/Berlin' for 'CEST/2.0/DST' instead in /usr/share/nginx/html/info.php on line 2
dans /var/log/php-fpm/www-error.log

Nous pouvons ajouter dans /etc/php.ini la ligne suivante :
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = "Europe/Paris"
Ensuite, nous allons activer php-frm et le démarrer:
[root@lemp ~]# systemctl enable php-fpm.service
Created symlink from /etc/systemd/system/multi-user.target.wants/php-fpm.service to /usr/lib/systemd/system/php-fpm.service.
[root@lemp ~]# systemctl start php-fpm.service
Pour info, le processus de php-frm écoute sur le port 9000.

6 - Configurer Nginx

Le fichier de configuration de nginx est situé ici : /etc/nginx/nginx.conf
Editons-le:
[root@lemp ~]# vim /etc/nginx/nginx.conf
La configuration est facile à comprendre, on peut tout de même en apprendre plus aux adresses suivantes:
  • http://wiki.codemongers.com/NginxFullExample
  • http://wiki.codemongers.com/NginxFullExample2
[Optionnel] Nous allons augmenter le nombre de "worker_processes" et indiquer keepalive_timeout à un paramètre raisonnable :

[...]
events {
    worker_connections  1024;
    worker_connections  4;
}
[...]
    keepalive_timeout  65;
    keepalive_timeout  2;
[...]
Les virtual hosts sont définis dans les containers server {} dans /etc/nginx/conf.d. Nous allons ici modifié le vhost par défaut :
# vim /etc/nginx/conf.d/default.conf

[...]
server {
    listen       80;
    server_name  localhost;

    #charset koi8-r;
    #access_log  /var/log/nginx/log/host.access.log  main;

    location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
    }

    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }

    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}

    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #

    location ~ \.php$ {
        root           /usr/share/nginx/html;
        try_files $uri =404;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include        fastcgi_params;
    }

   
    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    location ~ /\.ht {
        deny  all;
    }

}
Pour décrire les modifications opérées ci-dessus:
  • server_name locahost; indique le nom du vhost par defaut, on peut aussi mettre un hostname specifique comme www.exemple.fr)
  • Dans "Location /" nous avons ajouter index.php à la ligne "index".
  • "root /usr/share/nginx/html;" est la localisation du répertoire racine
  • Le partie importante pour PHP est  "location ~ /\.ht {}" le fait que ce soit décommenté l'active.
  • PHP-FPM écoute sur le port 9000 sur 127.0.0.1 par défaut. Il est aussi possible de paramètrer PHP-FPM pour qu'il utilise un Socket Unix (partie 7)
Maintenant nous allons recharger nginx:
[root@lemp ~]# systemctl restart nginx.service
 Et crééons le fichier php à la racine du serveur (qui est /usr/share/nginx/html) :
[root@lemp ~]# vim /usr/share/nginx/html/info.php
phpinfo();
?>
Maintenant, nous pouvons appeler info.php dans le navigateur via l'adresse: http://10.250.0.134/html/info.php.


Comme on peut le voir, PHP5 est utilisé ici et il fonctionne avec FPM/FastCGI comme vu dans la ligne Server API. Si nous faisons défilé la page, on peut voirtout les modules qui sont déjà activés dans PHP5 incluant le module MySQL:


7 - Appliquer le socket Unix pour PHP-FRM

(OPTIONNEL)
Par défaut, nous avons pu voir que PHP-FRM écoute sur le port 9000 sur 127.0.0.1. Il est aussi possible de changer cela et faire en sorte que PHP-FRM utilise unix socket. Pour ce faire :
[root@lemp html]# vim /etc/php-fpm.d/www.conf
[...]
; Note: This value is mandatory.
;listen = 127.0.0.1:9000
listen = /var/run/php-frm/php5-frm.sock
[...]
Rédémarrer ensuite php-frm.service:
[root@lemp html]# systemctl restart php-frm.service
Ensuite, changeons la configuration de Nginx:
[root@lemp html]# vim /etc/nginx/conf.d/default.conf
[...]
fastcgi_pass   127.0.0.1:9000;
fastcgi_pass   unix:/var/run/php-fpm/php5-fpm.sock;
[...]
Et redémarrer nginx:
[root@lemp html]# systemctl restart nginx.service
8 - Liens


Aucun commentaire:

Enregistrer un commentaire

Différences majeures entre Red Hat 6, 7, 8 et 9

Quelles sont les différences majeures entre RHEL 6, 7, 8 et 9 ? Système de fichiers RHEL 6: Par défaut : ext4. Autres : ext2, ext3 supportés...