web-dev-qa-db-ja.com

ubuntu 13.04からnginxを完全に削除する方法は?

この質問は以前にも尋ねられたことを知っています。私はそれらを調べましたが、私の問題は解決しません。

システムからnginxを削除するには、次のコマンドを実行しました

Sudo apt-get remove nginx

Sudo apt-get purge nginx

実際にはすべてをアンインストールしましたが、実行するとnginx -Vそれでも以下を返します...

nginxバージョン:gcc 4.7.3(Ubuntu/Linaro 4.7.3-1ubuntu1)によって構築されたnginx/1.4.1 TLS SNIサポートが有効になっている構成引数:--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。ログ--pid-path =/var/run/nginx.pid --lock-path =/var/run/nginx.lock --http-client-body-temp-path =/var/cache/nginx/client_temp- -http-proxy-temp-path =/var/cache/nginx/proxy_temp --http-fastcgi-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 --user = nginx --group = 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-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-mail --with- mail_ssl_module --wi th-file-aio --with-ipv6 --with-http_spdy_module

またps aux | grep nginxは実行中のnginxサービスを示していません。

今私は完全にnginxを削除したかどうかわからない?そうでない場合は、それを削除する方法?

そしてdpkg -l | grep nginxは次を返します...

ii nginx-common 1.2.6-1ubuntu3すべての小型で強力なスケーラブルなWeb /プロキシサーバー-共通ファイル
ii nginx-full 1.2.6-1ubuntu3 i386 nginx Web /プロキシサーバー(標準バージョン)

編集:ソースからインストールしました。

16

_dpkg -l_からの出力が示すように、関連するパッケージ名は、単にnginxだけではなく、実際には_nginx-full_および_nginx-common_です。これらは、削除する必要があるパッケージです。

特定のプログラム(nginxなど)を含むパッケージを見つけるには、いつでもdpkg -S $(which nginx)を実行できます。

26
twalberg