étapes de construction et de configuration de l'environnement php :
1. Version du logiciel et du système
Adresse de téléchargement du système :
Adresse de téléchargement du package logiciel : http://xiazai.jb51.net/201611/yuanma/php+apache+mysql(jb51 .net).rar
2. Téléchargez le progiciel/changez la source
(1) Téléchargez et installez l'outil logiciel du progiciel
yum install -y wget vim unzip zip
(2) Changer la source
1. Désinstallez d'abord l'epel précédemment installé pour éviter d'affecter
rpm -e epel -release2. Vider le cache miammiam tout nettoyer miam makecache 3. rm -rf /etc/yum.repos.d/* (Lorsque vous effectuez cette opération, n'oubliez pas d'installer wget à l'avance, sinon vous devrez monter le CD et utiliser rpm pour installer wget.)4. Téléchargez la source Ali wget -P /etc/yum.repos.d/ http://mirrors.aliyun.com/repo/epel-6. repohttp://mirrors.aliyun.com/repo/Centos-6.repo5, miam repolist Recommandations associées : "
Tutoriel de démarrage PHP 》
3. Installez MySQL
(1) Décompressez tar -zxvf mysql- 5.1.72-linux-x86_64-glibc23 .tar.gz (2) Configurer mysqlmv mysql-5.1.72-linux-x86_64-glibc23 /usr/local/mysql cd /usr/local/mysql useradd -s /sbin/nologin mysql mkdir -p /data/mysql chown -R mysql:mysql /data/mysql
cp support-files/my-large.cnf /etc/my.cnf cp support-files/mysql.server /etc/init.d/mysqld chmod 755 /etc/init.d/mysqld vim /etc/init.d/mysqld
datadir=/data/mysqlrépertoire de la base de données mysql)
4 Installer Apache
(1) Installez l'environnement d'exécution du logiciel gcc<🎜. >yum install -y gcc
(2) Décompresser
tar -jxvf httpd-2.2.27.tar.bz2
(3) Compiler
./configure --prefix=/usr/local/apache2 --enable-mods-shared=most --enable-so
(4) Installer
make
make install
5. Installez PHP
(1) Décompressez
tar -zxvf php-5.3.28.tar.gz
(2) Requis pour installer le plug-in du logiciel php
yum install -y libxml2-devel.x86_64 yum install -y openssl-devel.x86_64 yum install -y bzip2-devel.x86_64 yum install -y libjpeg-turbo-devel.x86_64 yum install -y libpng-devel.x86_64 yum install -y freetype-devel.x86_64 yum install -y libmcrypt-devel.x86_64
(3) Compilez le code
comme suit :
./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache2/bin/apxs --with-config-file-path=/usr/local/php/etc --with-mysql=/usr/local/mysql --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-bz2 --with-openssl --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-mbstring --enable-sockets --enable-exif --disable-ipv6
(4) Installer
make
make install
六、编辑配置文件
(1)vim /usr/local/apache2/conf/httpd.conf找到:
<Directory /> Options FollowSymLinks AllowOverride None Order deny,allow Deny from all </Directory>
改为:
<Directory /> Options FollowSymLinks AllowOverride None Order deny,allow Allow from all </Directory>
找到:
AddType application/x-gzip .gz .tgz
在该行下面添加:
AddType application/x-httpd-php .php
找到:
<IfModule dir_module> DirectoryIndex index.html </IfModule>
将该行改为:
<IfModule dir_module> DirectoryIndex index.html index.htm index.php </IfModule>
找到:
#ServerName www.example.com:80
修改为:
ServerName localhost:80
2 测试解析php
vim /usr/local/apache2/htdocs/1.php
写入:
<?php phpinfo(); ?>
浏览器打开:地址/1.php
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!