配置config.xml 后使用 docker ps发现rpa_backend_task不是up

使用【docker logs 容器id】发现下面报错

this is incompatible with sql_mode=only_full_group_by

改一下mysql配置在mysql.ini或者my.cnf下增加

 1.centos8 MySQL配置路径

vim /etc/my.cnf

最下面添加 

[mysqld]
sql_mode ='STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION'

然后重启mysql

service mysqld restart

2.最后重启docker

sudo sh stop.sh
sudo sh start.sh