Hi,
I have an issue in validating the license key from a Linux box. Post installing the Wowza server I ran startup.sh and it prompted me to enter the license key. Once I entered it returned with the following error message.
“ERROR server comment - The Wowza Media Systems Software licensing system was not able to connect to the licensing server to validate your license. Please validate that your machine is able to send HTTP data over TCP port 80 to the Internet. If this problem persists, please visit https://www.wowza.com/subscriptionsupport.php for up to date information.”
I am not even able to ping the license server form my linux server.
Then I set the eproxy from the console using
export http_proxy=‘host and port details’ and also added the proxy details in startup.sh file
below is my startup.sh file
#!/bin/sh
. ./setenv.sh
#chmod 600 …/conf/jmxremote.password
#chmod 600 …/conf/jmxremote.access
NOTE: Here you can configure the JVM’s built in JMX interface.
See the “Server Management Console and Monitoring” chapter
of the “User’s Guide” for more information on how to configure the
remote JMX interface in the [install-dir]/conf/Server.xml file.
JMXOPTIONS=-Dcom.sun.management.jmxremote=true
#JMXOPTIONS="$JMXOPTIONS -Djava.rmi.server.hostname=192.168.1.7"
#JMXOPTIONS="$JMXOPTIONS -Dcom.sun.management.jmxremote.port=1099"
#JMXOPTIONS="$JMXOPTIONS -Dcom.sun.management.jmxremote.authenticate=true"
#JMXOPTIONS="$JMXOPTIONS -Dcom.sun.management.jmxremote.ssl=false"
#JMXOPTIONS="$JMXOPTIONS -Dcom.sun.management.jmxremote.password.file=$WMSCONFIG_HOME/conf/jmxremote.password"
#JMXOPTIONS="$JMXOPTIONS -Dcom.sun.management.jmxremote.access.file=$WMSCONFIG_HOME/conf/jmxremote.access"
#ulimit -n 20000
log interceptor com.wowza.wms.logging.LogNotify - see Javadocs for ILogNotify
$_EXECJAVA $JAVA_OPTS $JMXOPTIONS -Dcom.wowza.wms.AppHome="$WMSAPP_HOME" -Dcom.wowza.wms.ConfigURL="$WMSCONFIG_URL" -Dcom.wowza.wms.ConfigHome="$WMSCONFIG_HOME" -cp $WMSAPP_HOME/bin/wms-bootstrap.jar com.wowza.wms.bootstrap.Bootstrap start -Dhttp.proxy.host=10.99.2.108 -Dhttp.proxy.port=8080
But staill I am facing the same problem. Please suggest.
Thanks in advance.