- 服务器搭建
-- 简介
操作系统:CentOS 7
web服务器:Nginx
数据库管理系统:MySQL
编程语言:PHP
-- README
1.本次使安装 centos 系统的 iso 文件为 CentOS-7-x86_64-Minimal-1804.iso
2.文档中命令默认使用 root 权限
3.注意本文的中的一些符号:
'-' 号表示该符号所在这一行需要删除或者修改
'+' 号表示删除后添加的内容或者修改后的内容
'#' 号表示注释
-- 网络
# 安装时如果没有选择启动网卡,安装完成后需要手动启动
# 修改网卡配置文件
vi /etc/sysconfig/network-scripts/ifcfg-ens33
# 修改为可启动
- ONBOOT=no
+ ONBOOT=yes
# 修改后网络服务
service network restart
# 查看ip地址(可以远程登录)
ip addr
-- 软件源
# 修改为清华源
vi /etc/yum.repos.d/CentOS-Base.repo
# 内容可在以下网址中找到
https://mirrors.tuna.tsinghua.edu.cn/help/centos/
# 更新包缓存
yum makecache
-- 安装相应的依赖和工具
yum install -y epel-release
yum install -y gcc gcc-c++ pcre* openssl* gd-devel* zlib-devel pcre-devel wget net-tools
yum install -y bzip2 ncurses-devel cmake
yum install -y libxml2 libxml2-devel bzip2-devel curl-devel php-mcrypt libmcrypt libmcrypt-devel postgresql-devel libxslt-devel autoconf libicu-devel
-- 安装 nginx
# 上传 nginx 源码包
# 或者下载在以下网址中选择版本下载,目前稳定的的版本是:nginx-1.14.0
http://nginx.org/en/download.html
# 解压
tar -zxvf nginx-1.8.0.tar.gz
# 配置
cd nginx-1.8.0
./configure --prefix=/usr/local/nginx --with-pcre --with-http_ssl_module --with-http_spdy_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_auth_request_module --with-http_stub_status_module --with-http_image_filter_module --with-http_gzip_static_module
# 编译安装
make && make install
--- 添加配置文件
# 将 nginx.conf 文件上传到 /usr/local/nginx/conf/ 目录中 替换掉 nginx.conf
- location / {
- return 500;
- }
+ location / {
+ root html;
+ index index.html index.htm index.php;
+ }
+ location ~ \.php$ {
+ fastcgi_pass unix:/var/php/php-cgi-site.sock;
+ fastcgi_split_path_info ^(.+\.php)(/.+)$;
+ fastcgi_index index.php;
+ fastcgi_intercept_errors on;
+ fastcgi_param PATH_INFO $fastcgi_path_info;
+ fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
+ include fastcgi_params;
+ }
# 在 /usr/local/nginx/ 目录中创建 vhost 目录(如果添加站点的话,站点的配置文件在 vhost 中)
mkdir /usr/local/nginx/vhost
--- 添加 nginx 为系统服务,设置开机自启
# 将 nginx.service 文件上传到 /lib/systemd/system/ 目录中
# 启动 nginx 服务(如果已经启动则命令报错)
systemctl start nginx.service
# 将服务添加到开机启动(命令后不能有空格)
systemctl enable nginx.service
# 重启
shutdown -r now
# 查看 nginx 是否已经自启
systemctl status nginx
# 重新加载配置文件
systemctl reload nginx
# 另记录 nginx 各个目录位置
nginx path prefix: "/usr/local/nginx"
nginx binary file: "/usr/local/nginx/sbin/nginx"
nginx configuration prefix: "/usr/local/nginx/conf"
nginx configuration file: "/usr/local/nginx/conf/nginx.conf"
nginx pid file: "/usr/local/nginx/logs/nginx.pid"
nginx error log file: "/usr/local/nginx/logs/error.log"
nginx http access log file: "/usr/local/nginx/logs/access.log"
# 文件
nginx http client request body temporary files: "client_body_temp"
nginx http proxy temporary files: "proxy_temp"
nginx http fastcgi temporary files: "fastcgi_temp"
nginx http uwsgi temporary files: "uwsgi_temp"
nginx http scgi temporary files: "scgi_temp"
-- 防火墙(默认不开放80端口)
#指定开放80端口
firewall-cmd --zone=public --add-port=80/tcp --permanent
#重启
systemctl restart firewalld
-- PHP
# 上传 PHP 源码包
# 或者在以下网址下载
http://php.net/downloads.php
# 解压
tar -zxvf php-7.1.12.tar.gz
# 配置
cd php-7.1.12
./configure --prefix=/usr/local/php --enable-fpm --with-mcrypt --with-zlib --enable-mbstring --enable-pdo --with-curl --disable-debug --disable-rpath --enable-inline-optimization --with-bz2 --enable-sockets --enable-sysvsem --enable-sysvshm --enable-pcntl --enable-mbregex --enable-exif --with-mhash --enable-opcache --enable-zip --with-pcre-regex --with-pdo-mysql --with-iconv --with-xmlrpc --with-openssl --with-mcrypt
# 编译安装
make && make install
--- 安装 php-gd 扩展
# 安装 php-gd 前需要安装 freetype、jpegsrc、libpng
# 安装 freetype(上传源码包)
tar -jxvf freetype-2.4.0.tar.bz2
cd freetype-2.4.0
./configure --prefix=/usr/local/freetype
mkdir /usr/local/freetype/include/freetype2/freetype/internal
make && make install
# 安装 jpegsrc
tar -zxvf jpegsrc.v9.tar.gz
cd jpeg-9/
CFLAGS="-O3 -fPIC" ./configure --prefix=/usr/local/jpeg
make && make install
# 安装 libpng
tar -zxvf libpng-1.2.56.tar.gz
cd libpng-1.2.56
CFLAGS="-O3 -fPIC" ./configure --prefix=/usr/local/libpng
make && make install
# php-gd
cd php-7.1.12/ext/gd
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config --with-jpeg-dir=/usr/local/jpeg --with-png-dir=/usr/local/libpng --with-freetype-dir=/usr/local/freetype
--- 安装 mysqli扩展
cd php-7.1.12/ext/mysqli
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config
--- 安装 intl
cd php-7.1.12/ext/intl
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config
# 添加配置文件(注意php-fpm中指定文件的名称)
# 将 php.ini 上传到 /etc/php.ini (没有就将php源码中的php-ini.production复制过去 cp php.ini-production /etc/php.ini)
# 将 php-fpm-site.conf 上传到 /usr/local/php/etc/php-fpm.site.conf
(或者 cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf
cp /usr/local/php/etc/php-fpm.d/www.conf.default /usr/local/php/etc/php-fpm.d/www.conf)
# 将 php-fpm-site.pid 文件上传到 /run/php-fpm-site.pid
# 将 php-cgi-site.sock 上传到 /var/php/php-cgi-site.sock
mkdir /var/php/
chown nobody /var/php/php-cgi-site.sock
# 添加 php php-fpm 服务启动文件
# 上传 php-fpm 到 /etc/init.d/php-fpm(或者 cp sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm)
# 上传 php 到 /etc/init.d/php
# 赋予可执行权限
chmod +x /etc/init.d/php-fpm
chmod +x /etc/init.d/php
# 添加环境变量
vi /etc/profile
#php path
export PATH=$PATH:/usr/local/php/bin
#m4 path
export PATH=/usr/local/m4/bin:$PATH
source /etc/profile
# 添加 php 用户
useradd webusers
# 添加开机启动
service php start
chkconfig --add php
chkconfig php on
# 测试
# 添加测试脚本
vi /usr/local/nginx/html/test.php
+ <?php
+ phpinfo();
:wq
# 浏览器中输入 ip/test.php
-- 安装 MySQL
# boost
tar -jxvf boost_1_59_0.tar.bz2
mv boost_1_59_0 /usr/local/boost
# 安装 MySQL
tar -zxvf mysql-5.7.12.tar.gz
cd mysql-5.7.12
cmake . -DCMAKE_INSTALL_PREFIX=/usr/local/mysql -DMYSQL_DATADIR=/usr/local/mysql/data -DDEFAULT_CHARSET=utf8mb4 -DDEFAULT_COLLATION=utf8mb4_general_ci -DMYSQL_TCP_PORT=3306 -DWITH_ARCHIVE_STORAGE_ENGINE=1 -DWITH_BLACKHOLE_STORAGE_ENGINE=1 -DWITH_PARTITION_STORAGE_ENGINE=1 -DENABLE_DOWNLOADS=1 -DDOWNLOAD_BOOST=1 -DWITH_BOOST=/usr/local/boost
make && make install
# 添加配置文件 my.cnf 到 /etc/ 目录下(默认已经生成了该文件)
# 创建一些必要的目录
mkdir /usr/local/mysql/data
mkdir /usr/local/mysql/logs
mkdir /usr/local/mysql/pids
# 添加 mysql 用户
useradd mysql
# 将目录权限添加给 mysql 用户
chown mysql:mysql data/ logs/ pids/
#mysql path
vi /etc/profile
+ export PATH=/usr/local/mysql/bin:/usr/local/mysql/lib:$PATH
source /etc/profile
# 初始化mysql
# --initialize 表示默认生成一个安全的密码, --initialize-insecure 表示不生成密码, 密码为空
mysqld --initialize-insecure --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data
# 添加 mysqld 到服务
cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysqld
chkconfig --add mysqld
# 开机启动
chkconfig mysqld on
# 启动
service mysqld restart
# 修改root密码
mysql -u root
mysql> use mysql;
# 修改本地登录密码
mysql> update user set authentication_string=password('123456') where user='root' and Host = 'localhost';
# 刷新
mysql> FLUSH PRIVILEGES;
# 开启防火墙3306端口 (与之前开启80端口一样)
网友评论