ubuntu系統下從新增使用者到php環境部署
阿新 • • 發佈:2018-12-18
1、建立使用者work
建立:useradd -d /home/work -m work(-d:指定使用者預設目錄 -m:建立目錄)
設定密碼:passwd
給work使用者root許可權:在/etc/sudoers裡面新增work ALL=(ALL:ALL) ALL
登入work su work
/home/work/.vimrc 編寫vi設定
2、安裝nginx
root賬號下
1、更新:apt-get update
2、安裝gcc g++的依賴庫:apt-get install build-essential apt-get install libtool
3、
安裝 pcre依賴庫:apt-get install libpcre3 libpcre3-dev
4、
安裝 pcre依賴庫:apt-get install zlib1g-dev
5、
安裝 ssl依賴庫:apt-get install openssl
root賬號下
1、下載:wget http://nginx.org/download/nginx-1.12.2.tar.gz(
http://nginx.org)
2、解壓
3、配置:./configure --prefix=/usr/local/nginx
4、編譯安裝make&&make install
5、啟動:sudo /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
6、檢視程序:ps -ef|grep nginx
3、安裝php
sudo apt-get install php7.0