1. linux 怎麼安裝nginx
Centos7配置Nginx+PHP7Web服務
作者:JadeGlorious
1、安裝相應的擴展支持;
yuminstallgcc-c++
yuminstallpcrepcre-devel
yuminstallzlibzlib-devel
yuminstallopensslopenssl-devel
yum-yinstalllibjpeglibjpeg-devellibpnglibpng-develfreetypefreetype-devellibxml2libxml2-develmysqlpcre-devel
yum-yinstallcurl-devellibxslt-devel
集成至一行命令一次安裝
yum-yinstalllibjpeglibjpeg-devellibpnglibpng-develfreetypefreetype-devellibxml2libxml2-develmysqlpcre-develgcc-c++pcrepcre-develpcrepcre-developensslopenssl--develcurl-devellibxslt-devel
如有不能成功安裝的,單獨再安裝一次即可;
2、編譯安裝Nginx最新版本
//檢查是否已經安裝nginx
$find/-namenginx
//如果已經安裝nginx先卸載掉
$yumremovenginx
//進入習慣使用的下載目錄,下載想要使用的nginx版
$wgethttp://nginx.org/download/nginx-1.7.4.tar.gz
//解壓nginx安裝包
$tar-zxvfnginx-1.7.4.tar.gz
//進入解壓後的目錄
$cdnginx-1.7.4
//配置安裝信息,要載入什麼擴展,安裝到什麼目錄之類的
//使用--prefix參數指定nginx安裝的目錄,make、makeinstall安裝
$./configure$默認安裝在下載目錄
//指定目錄
$./configure--prefix=/usr/local/nginx//指定安裝在/usr/local/nginx
//編譯安裝
$make&&makeinstall
//檢查是否安裝成功
$whereisnginx
3、編譯安裝PHP7
//下載、解壓、進入目錄:
$wgethttp://downloads.php.net/~ab/php-7.0.6RC1.tar.gz
$tar-zxvfphp-7.0.6RC1.tar.gz$cdphp-7.0.6RC1
//配置安裝信息、擴展
$./configure--prefix=/usr/local/php--exec-prefix=/usr/local/php--bindir=/usr/local/php/bin--sbindir=/usr/local/php/sbin--includedir=/usr/local/php/include--libdir=/usr/local/php/lib/php--mandir=/usr/local/php/php/man--with-config-file-path=/usr/local/php/etc--with-mysql-sock=/var/run/mysql/mysql.sock--with-mhash--with-openssl--with-mysql=shared,mysqlnd--with-mysqli=shared,mysqlnd--with-pdo-mysql=shared,mysqlnd--with-gd--with-iconv--with-zlib--enable-zip--enable-inline-optimization--disable-debug--disable-rpath--enable-shared--enable-xml--enable-bcmath--enable-shmop--enable-sysvsem--enable-mbregex--enable-mbstring--enable-ftp--enable-gd-native-ttf--enable-pcntl--enable-sockets--with-xmlrpc--enable-soap--without-pear--with-gettext--enable-session--with-curl--with-jpeg-dir--with-freetype-dir--enable-opcache--enable-fpm--enable-fastcgi--with-fpm-user=nginx--with-fpm-group=nginx--without-gdbm--disable-fileinfo
//編譯檢查不通過,缺少什麼擴展安裝了重新檢測,通過後編譯安裝
$makeclean&&make&&makeinstall
maketest
配置文件
#cpphp.ini-development/usr/local/php/lib/php.ini
#cp/usr/local/php/etc/php-fpm.conf.default/usr/local/php/etc/php-fpm.conf
#cp/usr/local/php/etc/php-fpm.d/www.conf.default/usr/local/php/etc/php-fpm.d/www.conf#cp-R./sapi/fpm/php-fpm/etc/init.d/php-fpm
//安裝完成後修改nginx配置文件nginx.conf,添加對php的支持,指定項目目錄,完成後重啟nginx
//啟動php-fpm
#/etc/init.d/php-fpm
2. linux下nginx停止命令
Linux下nginx服務如果要停止的話我們需要通過命令來控制,下面由我為大家整理了linux下nginx停止命令的相關知識,希望對大家有幫助!
linux的nginx停止命令詳解
nginx的停止有三種方式:
linux的nginx停止命令一、從容停止
1、查看進程號
[root@LinuxServer ~]# ps -ef|grep nginx
2、殺死進程
[root@LinuxServer ~]# kill -QUIT 2072
linux的nginx停止命令二、快速停止
1、查看進程號
[root@LinuxServer ~]# ps -ef|grep nginx
2、殺死進程
[root@LinuxServer ~]# kill -TERM 2132
或 [root@LinuxServer ~]# kill -INT 2132
linux的nginx停止命令三、強制停止
[root@LinuxServer ~]# pkill -9 nginx
附:linux的nginx重啟命令
重啟 方法 步驟:
1、驗證nginx配置文件是否正確
方法一:進入nginx安裝目錄sbin下,輸入命令./nginx -t
看到如下顯示nginx.conf syntax is ok
nginx.conf test is successful
說明配置文件正確!
方法二:在啟動命令-c前加-t
2、重啟Nginx服務
方法一:進入nginx可執行目錄sbin下,輸入命令./nginx -s reload 即可
方法二:查找當前ngin x的進 程號,然後輸入命令:kill -HUP 進程號 實現重啟nginx服務
3. linux下如何重啟nginx
1、第一種方法:首先在進入nginx可執行目錄bin,輸入代碼:cd /usr/local/nglnx/sbln。
4. 如何在linux中安裝nginx
第一步:下載相應的版本nginx-1.5.9.tar.gz
第二步:解壓 tar -zxvf nginx-1.5.9.tar.gz
第三步:設置一下配置信息 ./configure --prefix=/usr/local/nginx ,或者內不執行此步,直容接默認配置
第四步:
make 編譯 (make的過程是把各種語言寫的源碼文件,變成可執行文件和各種庫文件)
make install 安裝 (make install是把這些編譯出來的可執行文件和庫文件復制到合適的地方)