Centos伺服器搭建(5) 安裝ngnix

2022-08-13 10:12:14 字數 3328 閱讀 8980

首先已經安裝完jdk

2.安裝前確保已經安裝了g++、gcc、openssl-devel、pcre-devel和zlib-devel軟體

[root@iz2873rjubzz ~]# yum

install

gcc-c++

[root@iz2873rjubzz ~]# yum -y install zlib zlib-devel openssl openssl--devel pcre pcre-devel

3.安裝nginx

[root@iz2873rjubzz ~]# cp /root/nginx-1.6.2.tar.gz /opt/[root@iz2873rjubzz ~]# tar -xzvf nginx-1.6.2.tar

.gz[root@iz2873rjubzz opt]# cd nginx-1.6.2

[root@iz2873rjubzz nginx-1.6.2]# ./configure --prefix=/usr/local/nginx #安裝到/usr/local/nginx

[root@iz2873rjubzz nginx-1.6.2]# make && make

install

[root@iz2873rjubzz sbin]# /usr/local/nginx/sbin/nginx #啟動nginx

4.常用命令

[root@iz2873rjubzz sbin]# /usr/local/nginx/sbin/nginx -h

nginx version: nginx/1.6.2

usage: nginx [-?hvvtq] [-s signal] [-c filename] [-p prefix] [-g directives]

options:

-?,-h : this help

-v : show version and exit

-v : show version and configure options then

exit

-t : test configuration and exit

-q : suppress non-error messages during configuration testing

-s signal : send signal to a master process: stop, quit, reopen, reload

-p prefix : set prefix path (default: /usr/local/nginx/)

-c filename : set configuration file (default: conf/nginx.conf)

-g directives : set global directives out of configuration file

[root@iz2873rjubzz sbin]#

5 設定nginx開機啟動

這裡使用的是編寫shell指令碼的方式來處理

vi /etc/init.d/nginx  (輸入下面的**)

:wq  儲存並退出

更改指令碼許可權

chmod

775 /etc/init.d/nginx

設定開機啟動

chkconfig nginxd on

可以使用命令

service nginx

Centos伺服器搭建(4) 安裝mysql

1.先檢查系統有沒有安裝mysql root iz2873rjubzz opt rpm qa grep mysql 我們看到,並沒有安裝 mysql 但是有乙個 mysql 的libs 開發包外掛程式,他是幹什麼的呢?解釋 由於 centos6.4 系統自帶就有 postfix 服務,而這個 mys...

centos如何搭建SOCKS5伺服器?

大家對於socks5伺服器了解也不少了,能夠幫助我們隱藏ip,提公升ip被封禁,提公升網路速度以及提高ip本身的訪問許可權,因為在市場上關於ip的各種應用,基本上都是需要使用到socks5伺服器的,那麼要使用centos搭建socks5伺服器需要怎麼做呢?感興趣的小夥伴不妨來看下 1 編譯安裝ss5...

CentOS 搭建Git伺服器

1,安裝openssh服務斷和客戶端 yum y install openssh 2,安裝git和python setuptools yum y install git python setuptools 3,獲取並安裝gitosis,來管理git倉庫 git clone cd gitosis py...