# Wowza didn't start due to license server connection problem

**URL:** https://community.wowza.com/t/wowza-didnt-start-due-to-license-server-connection-problem/33981
**Category:** Wowza Streaming Engine
**Created:** [January 12, 2017, 12:49am UTC](https://community.wowza.com/t/wowza-didnt-start-due-to-license-server-connection-problem/33981 "2017-01-12T00:49:44Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![quan\_quan](https://avatars.discourse-cdn.com/v4/letter/q/b19c9b/32.png) [@quan\_quan](https://community.wowza.com/u/quan_quan)
#### Post date: [January 12, 2017, 12:49am UTC](https://community.wowza.com/t/wowza-didnt-start-due-to-license-server-connection-problem/33981/1 "2017-01-12T00:49:44Z")

</div>

Hi,

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](https://www.wowza.com/subscriptionsupport.php) for up to date information.

ERROR server comment 2017-01-12 07:29:00 - - - - - 34.184 - - - - - - - - system.exit[2]

Could you make your license checker more network fault tolerant? ( f.e. do some retry attempt )

Currently we are looking to implement some monitoring program to restart the server if the streaming engine didn’t start.

Br,

qstream

---

<div class="post-metadata">

### Author: ![Jermaine\_Hemby](https://avatars.discourse-cdn.com/v4/letter/j/82dd89/32.png) [@Jermaine\_Hemby](https://community.wowza.com/u/Jermaine_Hemby)
#### Post date: [January 14, 2017, 9:37am UTC](https://community.wowza.com/t/wowza-didnt-start-due-to-license-server-connection-problem/33981/2 "2017-01-14T09:37:35Z")

</div>

Hello

Thanks for contacting Wowza Forums!

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.

[Start Up Licensing Errors Troubleshooting](https://www.wowza.com/docs/troubleshoot-wowza-streaming-engine-licensing-errors-at-startup)

regards,

Jermaine

---

<div class="post-metadata">

### Author: ![Ben\_Jun](https://avatars.discourse-cdn.com/v4/letter/b/f475e1/32.png) [@Ben\_Jun](https://community.wowza.com/u/Ben_Jun)
#### Post date: [January 23, 2020, 10:18am UTC](https://community.wowza.com/t/wowza-didnt-start-due-to-license-server-connection-problem/33981/3 "2020-01-23T10:18:55Z")

</div>

I had the same problem. Running ubuntu.

How did you resolve this?

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.

```auto
# 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.

---

<div class="post-metadata">

### Author: ![Rose\_Power-Wowza\_Com](https://sea2.discourse-cdn.com/flex002/user_avatar/community.wowza.com/rose_power-wowza_com/32/431_2.png) [@Rose\_Power-Wowza\_Com](https://community.wowza.com/u/Rose_Power-Wowza_Com)
#### Post date: [January 23, 2020, 5:18pm UTC](https://community.wowza.com/t/wowza-didnt-start-due-to-license-server-connection-problem/33981/4 "2020-01-23T17:18:29Z")

</div>

Thanks for posting this as a solution Ben.
