文章原地址 https://techglimpse.com/openstack-db-sync-error-mysql-character-set-solution/
执行
# su -s /bin/sh -c "keystone-manage db_sync" keystone
时出现错误:CRITICAL keystone [-] DBError: (pymysql.err.InternalError) (1071, u'Specified key was too long; max key length is 767 bytes') [SQL: u'\nCREATE TABLE migrate_version (\n\trepository_id VARCHAR(250) NOT NULL, \n\trepository_path TEXT, \n\tversion INTEGER, \n\tPRIMARY KEY (repository_id)\n)\n\n']
Overall, you need to perform below steps:
- Replace utf8mb4 to utf8 in all configuration files
- Reload mysqld daemon
- Drop database keystone or glance or nova or neutron (for whichever service you were getting error and don’t worry, you haven’t populated the database yet and it’s safe to remove)
- Create database keystone or glance or nova or neutron
- Try db_sync or populate the database using OpenStack commands. It should probably work, else try Fix 2.
1.将/etc/mysql/mariadb.conf.d目录下的所有.cnf文件中出现uft8mb4的地方都修改成uft8
2.重启数据库 service mysql restart
3.进入数据库把建立的keystone数据库删除
4.重新建立keystone数据库
5.输入su -s /bin/sh -c "keystone-manage db_sync" keystone 应该就可以运行了,不行的话实时Fix2.
同时推荐文章http://blog.youkuaiyun.com/zhujie_hades/article/details/52104116
本文介绍了解决OpenStack部署过程中因MySQL字符集设置不当导致的数据库同步错误的方法。主要包括调整配置文件中的字符集设置、重启MySQL服务、删除并重建相关数据库等步骤。
2615

被折叠的 条评论
为什么被折叠?



