私はこの質問が早くも尋ねられていることを知っています。私はそれらを通過しましたが、私の問題は解決しません。システムからのnginxを削除するにはubuntuからnginxを完全に削除する方法13.04?
私は、次のコマンドを
実際にすべてをアンインストールしますが、私はnginx -V
を行うときに、それはまだ、次の...
nginxのバージョンを返します
sudo apt-get remove nginx sudo apt-get purge nginx
実行:nginxの/ 1.4.1 gcc 4.7.3(Ubuntu/Linaro 4.7.3-1ubuntu1) TLS SNIサポートが有効になっています configure引数--prefix =/etc/nginx --sbin-path =/usr/sbin/nginx --conf- path =/etc/nginx/nginx.conf --error-log-path = /var/log/nginx/error.log --http-log-path =/var/log/nginx/access.log --pid-path =/var/run/nginx.pid --lock-path =/var/var/cache/nginx/proxy_temp --http-fastcgi-/-http-client-body-temp-path =/var/cache/nginx/client_temp - temp-path =/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path =/var/cache/nginx/uwsgi_temp --http-scgi-temp-path =/var/cache/nginx/scgi_temp - ユーザ= nginx - グループ= nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module - --with-mail_ssl_moduleと-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-メール--with-FILE-AIO --with-IPv6の--with-http_spdy_module
また、ps aux | grep nginx
は、実行中のnginxサービスを表示していません。
nginxを完全に削除したかどうかはわかりません。そうでない場合は、それを削除する方法は?
そしてdpkg -l | grep nginx
戻り、次の...
IIのnginx-共通すべての小、強力な、スケーラブルなWeb /プロキシサーバー1.2.6-1ubuntu3 - 共通ファイル
II nginxのフル1.2.6-1ubuntu3 i386 nginxウェブ/プロキシサーバー(標準バージョン)
EDIT:ソースからインストールしました。 dpkg -l
ショーからあなたの出力として
削除/パージする必要があるパッケージ名は、単純に 'nginx'だけでなく、' nginx-full'と 'nginx-common'です...' dpkg -S $(which nginx) ' 。 – twalberg
@twalbergええ、あなたは絶対に正しいです。それは私のために働いた。回答としてあなたのコメントを入れてください、私はそれを近くにマークします。ありがとう。 'dpkg -S $(which nginx)'の代わりに –