openstack报错记录
apt-get报错:
在Ubuntu中,有时候运用sudo apt-get install 安装软件时,会出现一下的情况
E: Could not get lock /var/lib/dpkg/lock - open (11: Resource temporarily unavailable)E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it?
原因:在这个时候,主要是因为apt还在运行。
解决: 1、找到并且杀掉所有的apt-get 和apt进程$ sudo kill -9 进程ID或者$ sudo kill -SIGKILL 进程ID
数据库报错:
Caught error: (pymysql.err.OperationalError) (1040, u’Too many connections’)
原因:由于数据库连接达到上限
解决:SET GLOBAL max_connections = 512;