Home >Web Front-end >HTML Tutorial >Solve the problem that Openfire cannot enter the admin page, port 9090 is occupied_html/css_WEB-ITnose
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>