请根据提供的内容完成内容重构,并保持段落结构:

1. 卸载nginx及相关组件:

```

sudo apt-get --purge remove nginx

sudo apt-get autoremove

dpkg --get-selections|grep nginx

sudo apt-get --purge remove nginx-common

sudo apt-get --purge remove nginx-core

```

2. 检查nginx是否已彻底卸载:

```

dpkg --get-selections|grep nginx

which nginx # 如果不在显示nginx,说明已经卸载成功

```

3. 停止nginx服务:

```

sudo service nginx stop

```