JIRA刚安装好,在浏览器配置的时候出错了:添加服务时出错:com.atlassian.jira.exception.DataAccessException: org.ofbiz.core.entity.GenericDataSourceException: SQL Exception while executing the following:SELECT ID, delaytime, CLAZZ, servicename, CRON_EXPRESSION FROM serviceconfig WHERE servicename=? (Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '=')。 
应该怎么办啊
JIRA刚安装好,在浏览器设置应用程序属性添加服务时出错
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-
2条回答 默认 最新
低谷过后 2025-04-27 19:24关注原因是数据库的编码方式有问题,访问mysql数据库,手动修改下表结构的编码方式:alter table serviceconfig convert to character set utf8mb4 COLLATE utf8mb4_general_ci;
评论 打赏 举报解决 1无用