ubuntu14.04徹底刪除nginx
http://blog.csdn.net/u010571844/article/details/50819704
1.先執行一下命令:
1.1 刪除nginx,–purge包括配置檔案
sudo apt-get --purge remove nginx
- 1
- 1
1.2 自動移除全部不使用的軟體包
sudo apt-get autoremove
- 1
- 2
- 1
- 2
1.3 羅列出與nginx相關的軟體
dpkg --get-selections|grep nginx
- 1
- 1
執行1.3的結果:
[email protected]-OptiPlex-390:~$ dpkg --get-selections|grep nginx
nginx install
nginx-common install
nginx-core install
- 1
- 2
- 3
- 4
- 5
- 6
- 1
- 2
- 3
- 4
- 5
- 6
1.4 刪除1.3查詢出與nginx有關的軟體
sudo apt-get --purge remove nginx
sudo apt-get --purge remove nginx-common
sudo apt-get --purge remove nginx-core
- 1
- 2
- 3
- 1
- 2
- 3
這樣就可以完全解除安裝掉nginx包括配置檔案
2.檢視nginx正在執行的程序,如果有就kill掉
ps -ef |grep nginx
- 1
- 1
看下nginx還有沒有啟動,一般執行完1後,nginx還是啟動著的,如下:
stephen@stephen-OptiPlex-390:~$ ps -ef |grep nginx
root 7875 2317 0 15:02 ? 00:00:00 nginx: master process /usr/sbin/nginx
www-data 7876 7875 0 15:02 ? 00:00:00 nginx: worker process
www-data 7877 7875 0 15:02 ? 00:00:00 nginx: worker process
www-data 7878 7875 0 15:02 ? 00:00:00 nginx: worker process
www-data 7879 7875 0 15:02 ? 00:00:00 nginx: worker process
stephen 8321 3510 0 15:20 pts/0 00:00:00 grep --color=auto nginx
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 1
- 2
- 3
- 4
- 5
- 6
- 7
3.kill nginx程序
sudo kill -9 7875 7876 7877 7879
- 1
- 1
4.全域性查詢與nginx相關的檔案
sudo find / -name nginx*
- 1
- 1
5.依依刪除4列出的所有檔案
sudo rm -rf file
- 1
- 1
這樣就徹底刪除nginx了
6. 再次重灌
sudo apt-get update
sudo apt-get install nginx
相關推薦
ubuntu14.04徹底刪除nginx
http://blog.csdn.net/u010571844/article/details/50819704 1.先執行一下命令: 1.1 刪除nginx,–purge包括配置檔案 sudo apt-get --purge remove nginx11 1.2
(轉)mysql-ubuntu14.04徹底卸載mysql
blog serve sdn sql 簡單 rep arm 5.5 grep mysql-ubuntu14.04徹底卸載mysql sudo rm /var/lib/mysql/ -R 刪除mysql的配置文件 sudo rm /etc/mysql/ -R 自動卸載mysq
ubuntu16.04 徹底刪除mysql
以MySQL- 5.7.18為例: sudo apt-get autoremove --purge mysql-server-5.7 #sudo apt-get remove mysql-server # 沒用到,已經沒有mysql-server #sudo apt
徹底刪除nginx
1.先執行一下命令: sudo apt-get --purge remove nginx sudo apt-get autoremove dpkg --get-selections|grep nginx 羅列出與nginx相關的軟體, nginx-common deinst
CEPH Ubuntu14.04 叢集刪除 OSD 節點
[問題] 刪除 ceph-node1 上的 osd.4 節點的方法? [解答] 一般步驟是將 osd.4 標記為out, 停止 osd.4 對應的 OSD 服務 , 將 osd.4 從 cursh map中刪除,將 osd.4 對應 osd data 和
Ubuntu14.04下安裝Nginx伺服器
Nginx選擇1.9以上版本,支援tcp包轉發。1、選定安裝目錄,例如/home/deploy/2、安裝PCRE庫:tar -zxvf pcre-8.34.tar.gzcd pcre-8.34./configuremakemake install(如果預設沒有C編譯器,使用a
ubuntu中徹底刪除nginx
這樣就可以完全解除安裝掉nginx包括配置檔案2.檢視nginx正在執行的程序,如果有就kill掉ps -ef |grep nginx看下nginx還有沒有啟動,一般執行完1後,nginx還是啟動著的,如下:[email protected]:~$ ps -ef |grep nginxroot
mysql-ubuntu14.04徹底解除安裝mysql
刪除mysql的資料檔案 sudo rm /var/lib/mysql/ -R 刪除mysql的配置檔案 sudo rm /etc/mysql/ -R 自動解除安裝mysql(包括ser
ubuntu 16.04.1 nginx徹底刪除
1.刪除nginx,-purge包括配置檔案 sudo apt-get --purge remove nginx 2.移除全部不使用的軟體包 sudo apt-get autoremove 3.羅列出與nginx相關的軟體並刪除 dpkg --get-selection
Ubuntu14.04安裝Nginx
Nginx是一款輕量級的Web 伺服器/反向代理伺服器及電子郵件(IMAP/POP3)代理伺服器,並在一個BSD-like 協議下發行。由俄羅斯的程式設計師Igor Sysoev所開發,供俄國大型的入口網站及搜尋引擎Rambler(俄文:Рамблер)使用。其特點是佔有記憶體少,併發能力強,事
Ubuntu14.04下Nginx反向代理Odoo域名
安裝nginx sudo apt-get install -y nginx 修改配置檔案 vi /etc/nginx/nginx.conf #註釋掉下面這行程式碼 #include /etc/nginx/sites-enabled/*; #儲存
Ubuntu16.04如何徹底刪除Apache2
雖然作為運維人員通常情況不建議隨意刪除Linux系統上面的任何軟體,主要指生產環境下,測試環境也不能太隨意。 但是有的時候,比如系統環境要變一變,我們就需要替換一些淘汰的軟體,對此我們一般都會刪除。 按照下面的步驟,你就能完成Apache2軟體的徹底刪除: sudo apt-get --purge
解除安裝 nginx 徹底刪除
解除安裝 刪除 nginx 1.刪除nginx,–purge包括配置檔案 sudo apt-get --purge remove nginx 2.自動移除全部不使用的軟體包 sudo apt-get autoremove 3
Ubuntu14.04線上安裝配置Nginx
http://blog.csdn.net/qq_30004245/article/details/52872448 Nginx的線上安裝 sudo apt-get install nginx ubuntu安裝Nginx之後的檔案結構大致為:所有的配置檔案都在/etc
cloudermanger安裝時需要安裝或徹底正確解除安裝再安裝orcal-java7-installer、oracle-java7-set-default(ubuntu14.04版本)(圖文詳解)
歡迎您的加入! 微信公眾號平臺: 大資料躺過的坑 微信公眾號平臺: 人工智慧躺過的坑 大資料和人工智慧躺過的坑(總群): 161156071 更多QQ技術分群,詳情請見:http://www.cnblogs.com/zls
LEMP環境搭建(ubuntu16.04(ubuntu14.04)+nginx+mysql5.7+php7.1)
剛剛釋出就有被爬,所以以後都加個小標題了.本文為孤雪飄寒原創,如需轉載請註明出處,謝謝 1.安裝 1.先解決有可能存在的語言問題 1.安裝 sudo apt-get upda
ubuntu14.04 nginx報upstream timed out 問題原因,解決辦法
訪問php時一直出現http 504Gateway Time-out錯誤 錯誤日誌裡看到幾百個 upstream timed out 的錯誤 2016/11/01 10:32:45 [error] 3897#0: *1831129 upstream timed out (1
Ubuntu14.04下MySQL 5.6的修改字符集編碼為UTF8(徹底解決中文亂碼問題)
上一篇文章講解的MySQL安裝、但是安裝好的MySQL資料庫字元編碼有問題,這裡我們需要修改字元編碼。 我們首先講解一下我們安裝好的MySQL。 1、資料庫目錄,其所建立的資料庫檔案都在該目錄下 /var/lib/mysql/
Ubuntu14.04下virtualbox安裝win7虛擬機器問題總結以及刪除virtualbox方法
一 在Ubuntu安裝好之後是雙系統,但是兩個系統之間開關機切換很麻煩,於是在Ubuntu之下安裝了virtualbox然後準備安裝win7虛擬機器做一些原圖設計等工作,但是折騰了半天沒有正確安裝,但是最後還是將win7虛擬機器安裝好了,在此總結一下方法和遇到的問題
win10下U盤安裝/刪除ubuntu14.04雙系統
edit 根據 添加 命名 磁盤空間 準備 直接 desktop sdn 前言 這是一篇寫於一年前的備忘錄,記錄下了一個手殘的強迫癥一天之內反復刪裝三次ubuntu雙系統的全過程,也許以後還要用到,畢竟7秒記憶:)aliyun的快照回滾是為我收的費吧(bushi 安裝前的