5

最初 xampp 工作正常,我可以毫无问题地访问我的本地主机。我什至设置了访问服务器的密码。有一段时间一切都很好,xampp 询问我的凭据,我插入它们,然后我被带到我的管理员页面。没问题。

不过有一次,我不得不更改用于 Apache 的端口,但后来它不再抱怨了。

现在我收到一条消息说 Google Chrome 无法连接到我的本地主机。一切似乎都正常,所以我不知道出了什么问题。

这是我在 xampp 控制面板上看到的:

初始化控制面板

14:57:04  [main]    Windows Version: Windows Vista Home Premium SP2 32-bit
14:57:04  [main]    XAMPP Version: 1.8.3
14:57:04  [main]    Control Panel Version: 3.2.1  [ Compiled: May 7th 2013 ]
14:57:04  [main]    You are not running with administrator rights! This will work for
14:57:04  [main]    most application stuff but whenever you do something with services
14:57:04  [main]    there will be a security dialogue or things will break! So think 
14:57:04  [main]    about running this application with administrator rights!
14:57:04  [main]    XAMPP Installation Directory: "c:\xampp\"
14:57:04  [main]    Checking for prerequisites
14:57:04  [main]    All prerequisites found
14:57:04  [main]    Initializing Modules
14:57:04  [main]    Starting Check-Timer
14:57:04  [main]    Control Panel Ready
14:57:06  [Apache]  Attempting to start Apache app...
14:57:06  [Apache]  Status change detected: running
14:57:08  [mysql]   Attempting to start MySQL app...
14:57:08  [mysql]   Status change detected: running
4

4 回答 4

25

您需要在浏览器中指定新的端口号:http://localhost:10101如果端口是 10101。

于 2013-11-14T15:10:11.743 回答
4

您必须检查端口号并将其与本地主机一起添加。例如我使用的端口是 8080,所以它必须是 localhost:8080/dashboard

于 2019-01-26T01:13:45.837 回答
3

很可能您需要更改端口号。

您在服务器控制面板中执行此操作。按配置按钮进入 httpd.conf 文档并代表您更改端口号。

要加载它localhost:"Your chosen port number",请在 url 字段中输入。

于 2015-03-16T18:49:29.170 回答
0

我想简短地说一下,因为这个问题与另一个常见问题有关—— “XAMPP Port 80 in use by “Unable to open process” with PID 4 [duplicate]”

鉴于上一个问题的常见解决方案是

现在它避免使用端口 80 并使用端口 8080 而不是问题。您需要做的唯一额外的事情是确保将 localhost:8080 放在浏览器中,以便浏览器知道查看端口 8080。否则它默认为端口 80,并且不会找到您的本地站点。

要在浏览器中指定的确切数字是http://localhost:8080而不是http://localhost:10101.

有关更多信息,请查看YouTube 教程

于 2018-06-19T21:02:06.447 回答