.wlapp file deployment error in Worklight

烈酒焚心 提交于 2019-12-02 04:17:25

The error is pretty much straight forward. The deployment of the .wlapp files fails because the value of the property max_allowed_packet in MySQL is too low (by default it is 1MB).

It seems like the MySQL guide you've linked to misses some (important) steps.
Try these instructions:

  1. Locate the file my.ini belonging to your MySQL installation
  2. In it, find the section [mysqld]
  3. Underneath the section name, paste this: max_allowed_packet=500M
  4. Re-start the MySQL service
  5. Re-deploy the .wlapp files

Deployment should now pass.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!