搭建LNMP

本次搭建實驗是虛擬機(CentOS)環境,實際在雲主機上搭建並沒有太大區別,重在體驗整個lnmp搭建的流程,對於想快速建站的萌新,推薦能夠用相似騰訊雲上部署好的整套環境。php

環境準備:更換yum源的repo源爲阿里雲

wget -O /etc/yum.repos.d/epel-7.repo http://mirrors.aliyun.com/repo/epel-7.repo #更換repo源
yum install -y lrzsz gcc wget cmake #安裝編譯器等node

##本次用的是centos7的系統,對於其餘版本的centos請注意repo源的對應版本mysql

安裝nginx-1.14.2

cd #回到家目錄
yum -y install pcre-devel openssl-devel #環境準備
useradd -s /sbin/nologin -M www #建立www用戶
wget http://nginx.org/download/nginx-1.14.2.tar.gz #下載nginx
tar zxvf nginx-1.14.2.tar.gz #解壓
cd nginx-1.14.2 #進入已解壓文件
./configure --user=www --group=www --with-http_ssl_module --with-http_stub_status_module --prefix=/usr/local/nginx1.14.2/ #編譯檢查,開啓ssl模塊,status模塊
make && make install #執行編譯並安裝
ln -s /usr/local/nginx1.14.2 /opt/nginx #建立軟鏈接
/opt/nginx/sbin/nginx #啓動nginx並用瀏覽器打開檢查linux

##上面的命令能夠所有複製到shell裏面執行nginx

安裝mariadb-10.2.22
cd #回到家目錄
find -H /etc/ | grep my.c #查看系統默認數據庫配置文件
rm -rf /etc/my.cnf /etc/my.cnf.d/ #刪除默認數據庫配置文件
rpm -qa|grep mariadb-libs #查詢系統自帶mariadb-lib軟件
rpm -e `rpm -qa|grep mariadb-libs` --nodeps #刪除系統自帶的mariadb-libs
yum -y install libaio libaio-devel bison bison-devel zlib-devel openssl openssl-devel ncurses ncurses-devel libcurl-devel libarchive-devel boost boost-devel lsof wget gcc gcc-c++ make cmake perl kernel-headers kernel-devel pcre-devel

 #安裝相關依賴軟件
useradd -s /sbin/login -M -d /usr/local/mysql mysql #建立mysql用戶並指定家目錄
mkdir /usr/local/mysql #建立安裝目錄
mkdir -p /data/mysql #建立數據庫存放目錄
chown mysql:mysql /usr/local/mysql/ #權限設置
chown  -R mysql:mysql /data/mysql #數據庫目錄所屬設置
wget http://mirrors.tuna.tsinghua.edu.cn/mariadb//mariadb-10.2.22/source/mariadb-10.2.22.tar.gz #下載安裝包並解壓
tar zxvf mariadb-10.2.22.tar.gz && cd mariadb-10.2.22 #解壓並進入
#####執行編譯######
cmake . -DCMAKE_INSTALL_PREFIX=/usr/local/mysql \
-DMYSQL_DATADIR=/data/mysql \
-DSYSCONFDIR=/etc \
-DWITHOUT_TOKUDB=1 \
-DWITH_INNOBASE_STORAGE_ENGINE=1 \
-DWITH_ARCHIVE_STPRAGE_ENGINE=1 \
-DWITH_BLACKHOLE_STORAGE_ENGINE=1 \
-DWIYH_READLINE=1 \
-DWIYH_SSL=system \
-DVITH_ZLIB=system \
-DWITH_LOBWRAP=0 \
-DMYSQL_UNIX_ADDR=/tmp/mysql.sock \
-DDEFAULT_CHARSET=utf8 \
-DDEFAULT_COLLATION=utf8_general_ci
#######若是編譯失敗刪除CMakeCache.txt############
make && make install #執行安裝
###安裝完成後進行配置###
cd /usr/local/mysql #切換目錄
./scripts/mysql_install_db --user=mysql --datadir=/data/mysql #執行腳本
cp support-files/my-large.cnf /etc/my.cnf #複製MariaDB配置文件到/etc目錄
echo "export PATH=$PATH:/usr/local/mysql/bin/" >> /etc/profile #配置環境變量
source /etc/profile #變量更新
./support-files/mysql.server start #啓動mysql
./bin/mysql_secure_installation #初始化mariadb

##安裝mariadb,時間比較慢,建議喝杯檸檬茶~~c++

安裝php7.3.2
cd	#回到家目錄
yum -y install zlib-devel libxml2-devel libjpeg-devel libjepg-turbo-devel libiconv-devel freetype-devel libpng-devel gd-devel libcurl-devel libxslt-devel libmcrpt-devel mhash bzip2-devel postgresql-devel libzip-devel #安裝依賴軟件
yum -y remove libzip #刪除舊版本包
wget https://nih.at/libzip/libzip-1.2.0.tar.gz #下載安裝包
tar -zxvf libzip-1.2.0.tar.gz && cd libzip-1.2.0  #解壓安裝包
./configure #編譯檢查
make && make install #編譯安裝
cd #返回家目錄
cp /usr/local/lib/libzip/include/zipconf.h /usr/local/include/zipconf.h 
wget http://cn2.php.net/distributions/php-7.3.2.tar.bz2	#下載php 
tar jxvf php-7.3.2.tar.bz2 #下載並解壓
cd php-7.3.2 #進入安裝文件
##########編譯檢查###################
####################################################
# 添加搜索路徑到配置文件
echo '/usr/local/lib64
/usr/local/lib
/usr/lib
/usr/lib64'>>/etc/ld.so.conf
#更新配置
ldconfig -v
'./configure' '--prefix=/usr/local/php' '--with-pdo-pgsql' '--with-zlib-dir=/usr/local/lib/libzip' '--with-freetype-dir=/usr/include/freetype2/freetype' '--enable-mbstring' '--with-libxml-dir=/usr' '--enable-soap' '--enable-calendar' '--with-curl'  '--with-gd' '--with-pgsql' '--disable-rpath' '--enable-inline-optimization' '--with-bz2' '--with-zlib' '--enable-sockets' '--enable-sysvsem' '--enable-sysvshm' '--enable-pcntl' '--enable-mbregex' '--enable-exif' '--enable-bcmath' '--with-mhash' '--enable-zip' '--with-pcre-regex' '--with-pdo-mysql' '--with-mysqli' '--with-jpeg-dir=/usr' '--with-png-dir=/usr'  '--with-openssl' '--with-fpm-user=www' '--with-fpm-group=www' '--with-libdir=/lib/x86_64-linux-gnu/' '--enable-ftp' '--with-gettext' '--with-xmlrpc' '--with-xsl' '--enable-opcache' '--enable-fpm' '--with-iconv' '--with-xpm-dir=/usr'
make #編譯
make install #安裝
sed -i 's#/usr/lib64##g' /etc/ld.so.conf && sed -i 's#/usr/local/lib64##g' /etc/ld.so.conf #恢復配置
ldconfig -v
##拷貝配置文件###
cp php.ini-development /usr/local/php/etc/php.ini
cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf
cp sapi/fpm/php-fpm /usr/local/bin

相關連接:nginx配置phpsql

相關文章
相關標籤/搜索