make_sock:无法绑定到地址0.0.0.0:8888

时间:2014-02-14 04:48:15

标签: apache redirect apache2 port

当我尝试重新启动apache

时出现此错误
(98)Address already in use: make_sock: could not bind to address 0.0.0.0:8888 
no listening sockets available, shutting down

我有一个在端口8888上运行的地图服务器。我尝试进行重定向,以便重定向从远程直接访问地图服务器。 sites-available / domain_name文件是

<VirtualHost *:80>
        ServerName domain_name
        ...
</VirtualHost>

Listen *:8888 http
<VirtualHost *:8888>
    ServerName domain_name
    Redirect permanent / http://domain_name/
    ...
    </VirtualHost>

有没有办法避免此错误并重新启动Apache服务器。地图服务器和apache在同一台机器上运行。

提前致谢。

0 个答案:

没有答案