LNMP:LNMP是指一組通常一起使用來運行動態網站或者服務器的自由軟件名稱首字母縮寫。L指Linux,N指Nginx,M一般指MySQL,也可以指MariaDB,P一般指PHP,也可以指Perl或Python。
進過前面三小節,我們已經初步搭建完成了LNMP基礎架構了,但是有些小夥伴想確認下環境是否確認搭建無誤,那麼我們接下來就驗證一下環境的準確性。
1、在nginx目錄下,新建測試文件
<code>[root@one nginx]# cd /home/nginx/
[root@one nginx]# touch html/huaxin_mysql.php
[root@one nginx]# ls html/
50x.html index.html huaxin_mysql.php test.php
[root@one nginx]# /<code>
2、在 huaxin_mysql.php 中寫入我們的測試信息
<code>[root@one nginx]# vim html/huaxin_mysql.php
# 寫入信息
$link=mysql_connect("192.168.20.128:3316","huaxin","Nihao@123456");
if(!$link){
echo "mysql_connect fail";
}else{
echo "mysql_connect success";
}
?>
# 保存退出 :wq
[root@one nginx]# /<code>
添加內容如圖:
添加的內容解讀:
使用 mysql 用戶名 “huaxin” 密碼 “Nihao@123456” 連接數據庫 “192.168.20.128”;
如果成功就返回 “mysql_connect success” ;
如果失敗就返回 “mysql_connect fail”;
3、重新加載nginx
PS:每次重啟nginx之前,最好先檢查下配置文件的準確性
<code>[root@one nginx]# ./sbin/nginx -t
nginx: the configuration file /home/nginx//conf/nginx.conf syntax is ok
nginx: configuration file /home/nginx//conf/nginx.conf test is successful
[root@one nginx]# ./sbin/nginx -s reload
[root@one nginx]#/<code>
4、瀏覽器訪問進行驗證
輸入地址:http://192.168.20.128:8010/huaxin_mysql.php
此處的IP地址要換成你本地實際的IP地址
至此,就可以證明我們LNMP架構整體搭建完成,接下來開啟第二章:Zabbix安裝,繼續加油~
閱讀更多 花芯 的文章