077 ubuntu12安裝nginx步驟

2021-08-04 06:51:47 字數 739 閱讀 4210

把 nginx_signing.key 檔案上傳到伺服器的某一路徑下,在同目錄下執行命令:sudo apt-key add nginx_signing.key

修改檔案 /etc/apt/sources.list

執行:

cd /etc/apt 

vim sources.list

在檔案末尾加上這麼兩行**:

deb 

/ubuntu/ precise nginx

deb-src

/ubuntu/ precise nginx

執行安裝命令:

apt-get update

apt-get install nginx

安裝完成後,會在/usr/sbin目錄下有乙個 nginx 檔案。這個就是nginx的程式檔案。

執行nginx:/usr/sbin/nginx

停止nginx:/usr/sbin/nginx -s stop

處理埠。

檢視開放的埠:ufw status

開放伺服器的埠:ufw allow 80

禁止伺服器的埠:ufw delete allow 80

Ubuntu安裝Nginx和正確解除安裝Nginx

敲入下列命令即可 sudo apt get update sudo apt get install nginxsudo apt get remove nginx nginx common 解除安裝刪除除了配置檔案以外的所有檔案。sudo apt get purge nginx nginx commo...

Ubuntu安裝Nginx和正確解除安裝Nginx

敲入下列命令即可 sudo apt get update sudo apt get install nginxsudo apt get remove nginx nginx common 解除安裝刪除除了配置檔案以外的所有檔案。sudo apt get purge nginx nginx commo...

Ubuntu安裝Nginx和正確解除安裝Nginx

1.ubuntu下安裝nginx比較簡單 敲入下列命令即可 sudo apt get update sudo apt get install nginx 安裝後會自動生成三個檔案 如下 2.ubuntu下解除安裝,稍不注意就會入坑 sudo apt get remove nginx nginx co...