Gitlab 无法启动的解决
这个很简单重新配置一下就可以了,gitlab-ctl reconfigure,然后 gitlab-ctl start 。注意可能刚刚开始有一段时间会处于 502 http 错误状态,等一段时间以后就可以了
MySql 无法启动的解决
不知道在升级 Ubuntu 过程中选错了哪一步,导致使用了旧的 MySql 配置文件来配置新的,因此MySql 无法启动。此时的 my.cnf 文件链到了 /etc/mysql/my.cnf.migrated ,也就是旧版迁移过来的,其实这个文件开头部分已经说明了解决办法:
# 1. Move your customisations from this file to /etc/mysql/conf.d/ and
# to /etc/mysql/<variant>.conf.d/ as appropriate.
# 2. Run “update-alternatives –remove my.cnf /etc/mysql/my.cnf.migrated”
# 3. Remove the file /etc/mysql/my.cnf.migrated
如果没有什么特殊设置的话,直接执行 update-alternatives –remove my.cnf /etc/mysql/my.cnf.migrated 就可以解决问题了。