这是我第一次使用 Ubuntu 设置虚拟服务器,我对 Apache2 有一些疑问。
当我打开虚拟服务器时,它以lightppd
. 因为(我认为)我过去使用 XAMPP 界面更熟悉 Apache 设置,所以我卸载了它并安装了 Apache。现在已经使用 Apache2 两周了,我的网站(连接到上述 VPS)不断显示 Apache 成功设置页面。我已经尝试了 Ubuntu stackExchange 和其他论坛中的所有解决方案,但结果仍然保持不变。所以从今天开始,我卸载了 Apache 并尝试使用其他服务器(例如 NGINX)。
但是在我卸载它之后,该页面仍然存在,就好像我对它所做的任何事情都不起作用一样。我重新启动了我的 VPS,重新启动了系统,删除了与 Apache 相关的所有内容,但该页面仍然显示在我的网站中。有谁知道我该怎么办以及在哪里寻找问题的根源?
Ubuntu版本是22.04.3 LTS,
我看过这个帮助页面 Cannot shutdown apache2 on 16.04 LTS但 Apache isworking 页面仍然存在。感谢您的帮助。
删除 apache 似乎还应该包括/var/www
目录,但由于我也有 nginx,看起来我们可以同时拥有一个/var/www
目录
在该/var/www
目录中,我看到两个文件夹:一个是命名文件html
夹,另一个是我自己的个人网站目录,假设它是myOwnBlog.com
. 目录中/var/www/html
有两个文件,分别名为test.html
和index.nginx-debian.html
html
|-- index.nginx-debian.html
`-- test.html
我们可以忽略/var/www/myOwnBlog.com
它,因为它是空的。即使我在此处添加内容,该内容也不会出现,而是显示 Apache 成功消息。
sudo service apache2 status
显示:
sudo service apache2 status
Unit apache2.service could not be found.
所以可以验证apache2已经完全卸载了。
sudo service nginx status
显示:
nginx.service - A high performance web server and a reverse proxy server
Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: en>
Active: active (running) since Tue 2023-11-28 13:25:43 UTC; 1h 15min ago
Docs: man:nginx(8)
Process: 419 ExecStartPre=/usr/sbin/nginx -t -q -g daemon on; master_process o>
Process: 519 ExecStart=/usr/sbin/nginx -g daemon on; master_process on; (code=>
Main PID: 538 (nginx)
Tasks: 3 (limit: 9553)
Memory: 10.6M
CPU: 114ms
CGroup: /system.slice/nginx.service
├─538 "nginx: master process /usr/sbin/nginx -g daemon on; master_pro>
├─539 "nginx: worker process" "" "" "" "" "" "" "" "" "" "" "" "" "" >
└─540 "nginx: worker process" "" "" "" "" "" "" "" "" "" "" "" "" "" >
可以验证nginx确实还在运行。
编辑 1: 添加 sotirov 要求的详细信息:
目录中有一个sites-available /etc/nginx/
,内容确实符合要求:
tree sites-available
sites-available
`-- default
index.nginx-debian.html
正如预期的那样,其内容是一个欢迎页面,内容nginx
为“Welcome to Nginx!” 等等。
这是内容,我认为它应该出现,而不是 Apache 成功页面:
GNU nano 6.2 index.nginx-debian.html <!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>
<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>
<p><em>Thank you for using nginx.</em></p>
</body>
</html>
编辑 2: 尝试有关删除 Apache 的过时方法的 sotirov 提示,
我无法粘贴结果,因为 ssh 一段时间后重新启动了它的会话。但它找到了这些软件包并推荐我sudo apt autoremove
:
The following packages will be REMOVED:
apache2-bin apache2-data apache2-utils libapr1 libaprutil1
libaprutil1-dbd-sqlite3 libaprutil1-ldap
0 upgraded, 0 newly installed, 7 to remove and 91 not upgraded.
After this operation, 7,160 kB disk space will be freed.
Do you want to continue? [Y/n] y
(Reading database ... 101786 files and directories currently installed.)
Removing apache2-bin (2.4.52-1ubuntu4.6) ...
Removing apache2-data (2.4.52-1ubuntu4.6) ...
Removing apache2-utils (2.4.52-1ubuntu4.6) ...
Removing libaprutil1-dbd-sqlite3:amd64 (1.6.1-5ubuntu4.22.04.2) ...
Removing libaprutil1-ldap:amd64 (1.6.1-5ubuntu4.22.04.2) ...
Removing libaprutil1:amd64 (1.6.1-5ubuntu4.22.04.2) ...
Removing libapr1:amd64 (1.7.0-8ubuntu0.22.04.1) ...
Processing triggers for man-db (2.10.2-1) ...
Processing triggers for libc-bin (2.35-0ubuntu3.4) ...