Home  >  Article  >  Web Front-end  >  Solve the problem that Openfire cannot enter the admin page, port 9090 is occupied_html/css_WEB-ITnose

Solve the problem that Openfire cannot enter the admin page, port 9090 is occupied_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 12:06:162302browse

I installed Openfire today, but http://127.0.0.1:9090/index.html cannot be accessed. It is suspected that the port is occupied.

So netstat -ano


Check the task manager, it is actually occupied by qq


So I changed Openfire to port 9191 and it ran successfully

Modify C:Program FilesOpenfireconfopenfire.xml

<jive>    <adminConsole>        <!-- Disable either port by setting the value to -1 -->        <port>9191</port>        <securePort>9091</securePort>    </adminConsole>    <locale>en</locale>    <!-- Network settings. By default, Openfire will bind to all network interfaces.      Alternatively, you can specify a specific network interfaces that the server      will listen on. For example, 127.0.0.1. This setting is generally only useful       on multi-homed servers. -->    <!--    <network>        <interface></interface>    </network>    --></jive>


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn