Recently we have encountered several times wowza didn’t start issue after reboot our VM servers, the error messages are :
ERROR server comment 2017-01-12 07:29:00 - - - - - 34.168 - - - - - - - - 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.
Thanks for the feedback. We will take that into consideration.
Regarding your issue, looks like the server was offline and not on the internet after starting up from a reboot, per the error you attached. You should review the article mentioned and go through those troubleshooting steps to mitigate the issue.
In case someone else has the same issue, below is my (ugly) fix. Adding this entry to crontab restarts the streaming engine 15 seconds after boot. That was good enough for my network connection to settle.
# restart wowza streaming engine after a 15 second delay for DHCP to settle
@reboot sleep 15; sudo systemctl restart WowzaStreamingEngine.service
A more proper fix would delay starting the wowza services until network connection is stable. Better yet, the license server retry as suggested by the OP.