本篇教程在示例步骤中使用了以下版本的软件。操作时,请您以实际软件版本为准。
操作系统:CentOS 7.2 64位
Apache:2.4.37
MySQL:5.6.24
PHP:7.0.32
phpMyAdmin:4.0.10.20
输入命令cat /etc/redhat-release查看系统版本
输入systemctl status firewalld命令查看当前防火墙的状态。
如果防火墙的状态参数是active,则防火墙为开启状态。如果防火墙的状态参数是inactive,则防火墙为关闭状态。
如上图所示,此处防火墙为开启状态,需要运行如下命令关闭防火墙:
如果您想临时关闭防火墙,输入命令systemctl stop firewalld。
如果您想永久关闭防火墙,输入命令systemctl disable firewalld。
输入getenforce命令查看当前SELinux的状态。
如果SELinux状态参数是Enforcing,则SELinux为开启状态。如果SELinux状态参数是Disabled, 则SELinux为关闭状态。
如上图所示,此处SELinux为开启状态,需要运行如下命令关闭SELinux:
如果您想临时关闭SELinux,输入命令setenforce 0
如果您想永久关闭SELinux,输入命令vi /etc/selinux/config编辑SELinux配置文件。回车后,把光标移动到SELINUX=enforcing这一行,按下i键进入编辑模式,修改为SELINUX=disabled, 按下Esc键,然后输入:wq并回车以保存并关闭SELinux配置文件。
yum groupinstall " Development Tools" -y
yum install libtool
yum install expat-devel pcre pcre-devel openssl-devel -y
wget https://mirrors.aliyun.com/apache/httpd/httpd-2.4.37.tar.gz
wget https://mirrors.aliyun.com/apache/apr/apr-1.6.5.tar.gz
wget https://mirrors.aliyun.com/apache/apr/apr-util-1.6.1.tar.gz
tar xvf httpd-2.4.37.tar.gz -C /usr/local/src
tar xvf apr-1.6.5.tar.gz -C /usr/local/src
tar xvf apr-util-1.6.1.tar.gz -C /usr/local/src
说明:源代码版本会不断升级。您可以在
https://mirrors.aliyun.com/apache/httpd/
https://mirrors.aliyun.com/apache/apr/
获取合适的安装包地址。
cd /usr/local/src
mv apr-1.6.5 httpd-2.4.37/srclib/apr
mv apr-util-1.6.1 httpd-2.4.37/srclib/apr-util
cd /usr/local/src/httpd-2.4.37
./buildconf
./configure --prefix=/usr/local/apache2 \
--enable-ssl \
--enable-so \
--with-mpm=event \
--with-included-apr \
--enable-cgi \
--enable-rewrite \
--enable-mods-shared=most \
--enable-mpms-shared=all
make && make install
echo "export PATH=$PATH:/usr/local/apache2/bin" > /etc/profile.d/httpd.sh
source /etc/profile.d/httpd.sh
输入命令vi /usr/lib/systemd/system/httpd.service打开Apache的启动配置文件,按下i键,然后在配置文件中写下如下内容:
[Unit]
Description=The Apache HTTP Server
After=network.target
[Service]
Type=forking
ExecStart=/usr/local/apache2/bin/apachectl -k start
ExecReload=/usr/local/apache2/bin/apachectl -k graceful
ExecStop=/usr/local/apache2/bin/apachectl -k graceful-stop
PIDFile=/usr/local/apache2/logs/httpd.pid
PrivateTmp=true
[Install]
WantedBy=multi-user.target
按下Esc键,然后输入:wq并回车以保存并关闭Apache启动配置文件。
systemctl start httpd
systemctl enable httpd
yum install ncurses-devel bison gnutls-devel -y
yum install cmake -y
cd
mkdir /mnt/data
groupadd -r mysql
useradd -r -g mysql -s /sbin/nologin mysql
id mysq
chown -R mysql:mysql /mnt/data
wget https://downloads.mysql.com/archives/get/file/mysql-5.6.24.tar.gz
tar xvf mysql-5.6.24.tar.gz -C /usr/local/src
cd /usr/local/src/mysql-5.6.24
cmake . -DCMAKE_INSTALL_PREFIX=/usr/local/mysql \
> -DMYSQL_DATADIR=/mnt/data \
> -DSYSCONFDIR=/etc \
> -DWITH_INNOBASE_STORAGE_ENGINE=1 \
> -DWITH_ARCHIVE_STORAGE_ENGINE=1 \
> -DWITH_BLACKHOLE_STORAGE_ENGINE=1 \
> -DWITH_READLINE=1 \
> -DWITH_SSL=system \
> -DWITH_ZLIB=system \
> -DWITH_LIBWRAP=0 \
> -DMYSQL_TCP_PORT=3306 \
> -DDEFAULT_CHARSET=utf8 \
> -DMYSQL_UNIX_ADDR=/usr/local/mysql/mysql.sock \
> -DDEFAULT_COLLATION=utf8_general_ci \
> -DWITH_SYSTEMD=1 \
> -DINSTALL_SYSTEMD_UNITDIR=/usr/lib/systemd/system
make && make install
chown -R mysql:mysql /usr/local/mysql/
cd /usr/local/mysql
/usr/local/mysql/scripts/mysql_install_db --user=mysql --datadir=/mnt/data/
mv /etc/my.cnf /etc/my.cnf.bak
cp /usr/local/mysql/support-files/my-default.cnf /etc/my.cnf
echo -e "basedir = /usr/local/mysql\ndatadir = /mnt/data\n" >> /etc/my.cnf
[Unit]
Description=MySQL Community Server
After=network.target
After=syslog.target
[Install]
WantedBy=multi-user.target
Alias=mysql.service
[Service]
User=mysql
Group=mysql
PermissionsStartOnly=true
ExecStart=/usr/local/mysql/bin/mysqld
TimeoutSec=600
Restart=always
PrivateTmp=false
按下Esc键,然后输入:wq并回车以保存并关闭MySQL启动配置文件。
echo "export PATH=$PATH:/usr/local/mysql/bin" > /etc/profile.d/mysql.sh
source /etc/profile.d/mysql.sh
systemctl start mysql
systemctl enable mysql
mysqladmin -u root password
mysql -uroot -p
yum install libmcrypt libmcrypt-devel mhash mhash-devel libxml2 libxml2-devel bzip2 bzip2-devel
cd
wget http://cn2.php.net/get/php-7.0.32.tar.bz2/from/this/mirror
cp mirror php-7.0.32.tar.bz2
tar xvf php-7.0.32.tar.bz2 -C /usr/local/src
cd /usr/local/src/php-7.0.32
./configure --prefix=/usr/local/php \
--with-config-file-scan-dir=/etc/php.d \
--with-apxs2=/usr/local/apache2/bin/apxs \
--with-config-file-path=/etc \
--with-pdo-mysql=mysqlnd \
--with-mysqli=/usr/local/mysql/bin/mysql_config \
--enable-mbstring \
--with-freetype-dir \
--with-jpeg-dir \
--with-png-dir \
--with-zlib \
--with-libxml-dir=/usr \
--with-openssl \
--enable-xml \
--enable-sockets \
--enable-fpm \
--with-bz2
make && make install
cp php.ini-production /etc/php.ini
找到ServerName参数,添加ServerName localhost:80
找到Directory参数,注释掉Require all denied,添加Require all granted。
找到DirectoryIndex index.html,将它替换为DirectoryIndex index.php index.html
找到如下内容:
在后面添加如下内容:
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
按下Esc键,然后输入:wq并回车以保存并关闭Apache配置文件。
打开index.php文件
vi /usr/local/apache2/htdocs/index.php
按下i键进入编辑模式,并添加以下内容:
按下Esc键退出编辑模式,并输入:wq保存并关闭index.php文件
重启Apache服务。
systemctl restart httpd
cd
mkdir -p /usr/local/apache2/htdocs/phpmyadmin
wget https://files.phpmyadmin.net/phpMyAdmin/4.0.10.20/phpMyAdmin-4.0.10.20-all-languages.zip
unzip phpMyAdmin-4.0.10.20-all-languages.zip
mv phpMyAdmin-4.0.10.20-all-languages/* /usr/local/apache2/htdocs/phpmyadmin
在本地机器浏览器输入 http:// 实例 IP/phpmyadmin 访问phpMyAdmin登录页面。如果出现以下页面,说明phpMyAdmin安装成功。
如果出现以下页面,说明连接MySQL成功。