LNMP就是Linux+Nginx+MySQL+PHP,既然是在Linux CentOS7那麼Linux就是已經安裝好了。所以接下百度一下接下來的教程,整理測試如下: 教程是centos6.2的有點老,將就著看看,教程:https://www.linuxidc.com/Linux/2012-09/7 ...
LNMP就是Linux+Nginx+MySQL+PHP,既然是在Linux CentOS7那麼Linux就是已經安裝好了。所以接下百度一下接下來的教程,整理測試如下:
教程是centos6.2的有點老,將就著看看,教程:https://www.linuxidc.com/Linux/2012-09/70788.htm
一、教程第1步是:配置防火牆,開啟80埠、3306埠,最後重啟防火牆使配置生效。但是重啟失敗,如下圖:
經過百度,原來在ContOS7中 使用systemctl工具來管理服務程式的,鏈接:https://blog.csdn.net/doubleface999/article/details/73358003
第2步是,關閉SELINUX,如果重啟失敗,請參考:https://blog.csdn.net/Angelloverbest/article/details/77825105
第3步是配置CentOS 6.2 第三方yum源
安裝篇:
一、安裝nginx
yum install nginx #安裝nginx,根據提示,輸入Y安裝即可成功安裝
systemctl start nginx.service #啟動
systemctl enable nginx.service #設為開機啟動
systemctl restart nginx.service #重啟
rm -rf /usr/share/nginx/html/* #刪除ngin預設測試頁
二、安裝MySQL資料庫。
1.下載mysql的repo源
$ wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm
2.安裝mysql-community-release-el7-5.noarch.rpm包
$ sudo rpm -ivh mysql-community-release-el7-5.noarch.rpm
安裝這個包後,會獲得兩個mysql的yum repo源:/etc/yum.repos.d/mysql-community.repo,/etc/yum.repos.d/mysql-community-source.repo。
3.安裝mysql
$ sudo yum install mysql-server
安裝完成以後使用下麵的命令開啟資料庫服務: systemctl start
mysql
.service #啟動MariaDB
systemctl stop mysql
.service #停止MariaDB
systemctl restart mysql.service #重啟MariaDB
systemctl enable mysql
.service #設置開機啟動
4修改mysql密碼
mysql_secure_installation
回車,根據提示輸入Y
輸入2次密碼,回車
根據提示一路輸入Y
最後出現:Thanks for using MySQL!
MySql密碼設置完成,重新啟動 MySQL
另外:
另外有個版本叫Mariadb,如果需要安裝Mariadb,可以使用下麵的命令進行安裝:yum install -y mariadb
安裝完成以後使用下麵的命令開啟資料庫服務:systemctl start mariadb.service #啟動MariaDB
systemctl stop mariadb.service #停止MariaDB
systemctl restart mariadb.service #重啟MariaDB
systemctl enable mariadb.service #設置開機啟動
三、安裝PHP,參考:https://blog.csdn.net/qq_34829953/article/details/78078790
yum install php #根據提示輸入Y直到安裝完成,安裝的是php5.4 2、安裝PHP組件,使PHP支持 MySQL、PHP支持FastCGI模式 yum install php-mysql php-gd libjpeg* php-imap php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-mcrypt php-bcmath php-mhash libmcrypt libmcrypt-devel php-fpm #根據提示輸入Y回車 #如果要安裝php5.6版本執行以下命令 yum provides php #自帶的只有5.4版本 rpm -Uvh https://mirror.webtatic.com/yum/el7/epel-release.rpm #更新源 rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm yum remove php-common -y #移除系統自帶的php-common yum install -y php56w php56w-opcache php56w-xml php56w-mcrypt php56w-gd php56w-devel php56w-mysql php56w-intl php56w-mbstring #安裝依賴包 php -v #版本變為5.6 yum provides php-fpm #因為我是準備搭建lnmp,所以安裝php-fpm,這裡會提示多個安裝源,選擇5.6版本的安裝就可以了 yum install php56w-fpm-5.6.31-1.w7.x86_64 -y
systemctl start php-fpm.service #啟動Php
systemctl stop php-fpm
.service #停止Php
systemctl restart php-fpm
.service #重啟Php
systemctl enable php-fpm
.service #設置開機啟動=================================================================
==========================================================
配置篇:
一、配置nginx支持php
cp /etc/nginx/nginx.conf /etc/nginx/nginx.confbak #備份原有配置文件
vi /etc/nginx/nginx.conf #編輯
user nginx nginx; #修改nginx運行賬號為:nginx組的nginx用戶
:wq! #保存退出
cp /etc/nginx/conf.d/default.conf /etc/nginx/conf.d/default.confbak #備份原有配置文件
vi /etc/nginx/conf.d/default.conf #編輯
root /usr/share/nginx/html; #增加
index index.php index.html index.htm; #增加index.php
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php(.*)$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_split_path_info ^((?U).+\.php)(/?.+)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
include fastcgi_params;
}
#取消FastCGI server部分location的註釋,並要註意fastcgi_param行的參數,改為$document_root$fastcgi_script_name,或者使用絕對路徑
二、配置php
vi /etc/php.ini #編輯
date.timezone = PRC # 把前面的分號去掉,改為date.timezone = PRC
disable_functions = passthru,exec,system,chroot,scandir,chgrp,chown,shell_exec,proc_open,proc_get_status,ini_alter,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server,escapeshellcmd,dll,popen,disk_free_space,checkdnsrr,checkdnsrr,getservbyname,getservbyport,disk_total_space,posix_ctermid,posix_get_last_error,posix_getcwd, posix_getegid,posix_geteuid,posix_getgid, posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid, posix_getppid,posix_getpwnam,posix_getpwuid, posix_getrlimit, posix_getsid,posix_getuid,posix_isatty, posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid, posix_setpgid,posix_setsid,posix_setuid,posix_strerror,posix_times,posix_ttyname,posix_uname
#列出PHP可以禁用的函數,如果某些程式需要用到這個函數,可以刪除,取消禁用。
expose_php = Off # 禁止顯示php版本的信息
magic_quotes_gpc = On # 打開magic_quotes_gpc來防止SQL註入,5.4以後版本未設置
:wq! #保存退出
三、配置php-fpm
cp /etc/php-fpm.d/www.conf /etc/php-fpm.d/www.confbak #備份原有配置文件
vi /etc/php-fpm.d/www.conf #編輯
user = nginx #修改用戶為nginx
group = nginx #修改組為nginx
systemctl restart mysql.service #重啟MySql
systemctl restart nginx.service #重啟nginx
systemctl restart
#重啟php-fpmphp-fpm
.service
===========================================================
============================================================
測試篇
cd /usr/share/nginx/html/ #進入nginx預設網站根目錄
vi index.php #新建index.php文件
<?php
phpinfo();
?>
:wq! #保存
chown nginx.nginx /usr/share/nginx/html/ -R #設置目錄所有者
chmod 700 /usr/share/nginx/html/ -R #設置目錄許可權
在客戶端瀏覽器輸入伺服器IP地址,可以看到相關的配置信息!