Change the Wowza Streaming Engine Manager bind port

You can modify the default port number (port 8088) used by Wowza Streaming Engine™ Manager. In some deployments, it's better to use a more common port for the manager user interface. This article describes how to modify the port used by Wowza Streaming Engine Manager.

Note: You can also configure Wowza Streaming Engine Manager to use Secure Sockets Layer (SSL) certificates so you can connect to it using HTTPS. For details, see Connect to Wowza Streaming Engine Manager over HTTPS.

If you're running Wowza Streaming Engine Manager on a Linux-based OS, open the [install-dir]/manager/bin/startmgr.sh file. On a Windows computer, open the [install-dir]/manager/bin/startmgr.bat file.

If you're using a Linux-based OS, look for a line like the following:
 
CMD="$_EXECJAVA -cp $CLASSPATH -Dcom.wowza.wms.ConfigURL=\"\" -Dcom.wowza.wms.ConfigHome=$WMSMGR_HOME -Djava.io.tmpdir=$WMSMGR_HOME/temp -Djava.net.preferIPv4Stack=true -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Djava.util.logging.config.file=$WMSLOGGING_PROPERTIES launch.Main --prefix=/enginemanager --defaultWebApp=/enginemanager --tempDirectory=$WMSMGR_HOME/temp --webroot=$WMSMGR_HOME/temp --warfile=$WMSMGR_HOME/lib/WMSManager.war --httpPort=8088 --config=$WMSMGR_HOME/conf/tomcat.properties --ajp13Port=-1 --directoryListings=false"

If you're using Windows, look for a line like the following:
 
%_EXECJAVA% %JAVA_OPTS% -cp "%CLASSPATH%" -Djava.util.logging.manager="org.apache.juli.ClassLoaderLogManager" -Djava.util.logging.config.file=%WMSLOGGING_PROPERTIES% launch.Main --prefix="/enginemanager" --defaultWebApp="/enginemanager" --tempDirectory="%WMSMGR_HOME%\temp" --webroot="%WMSMGR_HOME%\temp" --warfile="%WMSMGR_HOME%\lib\WMSManager.war" --httpPort=8088 --ajp13Port=-1 --directoryListings=false --config="%WMSMGR_HOME%\conf\tomcat.properties"

To change the port to which the manager binds, change "8088" in the line --httpPort=8088 to the desired port number. Make sure that there's no other service running on the same computer that's using the newly assigned port number. You must restart Wowza Streaming Engine Manager service before the new configuration settings will take effect.

After the service restart, check that Wowza Streaming Engine Manager is working properly on the new port by opening a web browser and connecting to:
 
http://[wowza-ip-address]:[new-port-number]/enginemanager