先前準備:
1.伺服器:我用的是阿里雲的伺服器,版本是centos7.3 64位
2.遠端連線linux例項,可以用阿里雲自帶的遠端連線,也可以用securecrt這一類的軟體連線
1. 連線linux例項
2. 關閉防火牆
可以 執行systemctl status firewalld命令檢視當前防火牆的狀態
如果防火牆的狀態引數是inactive,則防火牆為關閉狀態(看active:)
![在這裡插入描述](
3. 關閉selinux
安全增強型 linux(security-enhanced linux)簡稱 selinux,它是乙個 linux 核心模組,也是 linux 的乙個安全子系統。
可以 執行getenforce命令檢視selinux的當前狀態
如果selinux的狀態引數是disabled,則為關閉狀態
如果沒有,則執行 setenforce 0 臨時關閉
關閉後需要重新登陸系統使得設定生效。
4. 安裝nginx
執行以下命令安裝nginx。
yum -y install nginx
執行以下命令檢視nginx版本。
nginx -v
返回如下的結果,表示nginx安裝成功。
5. 安裝mysql
執行以下命令更新相應的yum源。
rpm -uvh
執行以下命令安裝mysql。
yum -y install mysql-community-server
執行以下命令檢視mysql版本號。(注意:v要大寫)
mysql -v
返回如下的結果,表示mysql安裝成功。
6. 安裝php
運用以下命令新增ius源。
yum install -y
再安裝php。
yum -y install php70w-devel php70w.x86_64 php70w-cli.x86_64 php70w-common.x86_64 php70w-gd.x86_64 php70w-ldap.x86_64 php70w-mbstring.x86_64 php70w-mcrypt.x86_64 php70w-pdo.x86_64 php70w-mysqlnd php70w-fpm php70w-opcache php70w-pecl-redis php70w-pecl-mongodb
執行以下命令檢視nginx版本。
php -v
返回如下的結果,表示php安裝成功。
7. 安裝好後配置相應的nginx
執行以下命令先備份好nginx的配置檔案。
cp /etc/nginx/nginx.conf /etc/nginx/nginx.conf.bak
修改nginx配置檔案,以新增nginx對php的支援。
用vim /etc/nginx/nginx.conf開啟檔案
在server大括號下新增紅框內容(參考阿里雲lnmp配置)
成功後執行命令systemctl start nginx 啟動nginx
8. 安裝好後配置相應的mysql
執行以下命令啟動mysql服務。
systemctl start mysqld
執行以下命令設定mysql服務開機自啟動。
systemctl enable mysqld
9. 安裝好後配置相應的phpvim /usr/share/nginx/html/phpinfo.php
輸入下列內容。
<?php echo phpinfo(); ?>
然後啟動 systemctl start php-fpm
最後一步:
開啟你的瀏覽器。
在位址列輸入http://
返回結果如下圖所示,表示你的lnmp環境部署成功。
手把手教你搭建Hive Web環境
了解hive的都知道hive有三種使用方式 cli命令列,hwi hie web inte ce 瀏覽器 以及 thrift客戶端連線方式。為了體驗下hwi模式,特意查詢了多方的資料,都沒有乙個完整的部署方案,經過一下午的踩坑,這裡特意總結一下,希望為後人節省點時間。先放個圖興奮一下!文件資源 各個...
手把手教你搭建 vue 環境
安裝成功後 右鍵選單 我們可以看到 gti bash here 說明我們已經安裝成功git 1.2 檢測node 是否安裝成功 右鍵空白,選擇 gti bash here 彈出 1.2.1 在終端輸入 node v 如果輸出版本號,說明我們安裝node 環境成功 隨便我們可以檢視 npm 的 版本號...
手把手教你appium mac上環境搭建
參考 對環境的需求 iosmac osx 10.7 xcode 4.5 和 command line tools npm 0.8 or greater mac os x 10.7 or higher,10.8.4 recommended xcode 4.6.3 檢查一下 發現兩個 的說法不同,安全第...