当前位置:首页 > 数据库 >

文章分类:数据库

数据库 [Z3001] connection to database 'zabbix' fail

问题:启动zabbix-server的时候,使用ss -tnl发现15001并未被监听,查看/var/log/zabbixsrv/zabbix_server.log 日志,提示: 2628:20190918:214402.782 [Z3001] connection to database ‘zabbix‘ failed: [2003] Can‘t conn……

数据库 mysql 报错ERROR 1820 (HY000): You must reset your password usi

解决办法 1、 修改用户密码 mysql alter user ‘root‘@‘localhost‘ identified by ‘youpassword‘; 或者 mysqlset password=password("youpassword"); 2、刷新权限 mysql flush privileges;……

数据库 gbase整合mybatis出现: Cause: java.sql.SQLException: Can'

参考地址: http://mybatis-user.963551.n3.nabble.com/Map-SQL-Type-LVARCHAR-x-to-JDBC-Type-VARCHAR-globally-td4029691.html 这主要是数据库中字段类型为LVARCHAR转换出现的问题,可以在mybatis-config.xml中添加如下配……

数据库 mysql被锁住 Lock wait timeout exceeded; try restarting transact

解决方案1 在mysql中数据库information_schema中查询下面三张表 select * from innodb_trx; ## 当前运行的所有事务 select * from innodb_locks; ## 当前出现的锁 select * from innodb_lock_waits; ## 锁等待的对应关系……

数据库 PostGIS 报错为org.postgresql.util.PSQLException:错误: Operation o

说明: 在用Openlayers与Geoserver进行开发,做在线编辑功能时,出现一个问题:每当我新增了一根要素后,再次用wfs的方式进行点击查询时,会报错mixed SRID。 通过研究发现在数据导入Po……

数据库 mysql 解决 ERROR 1114 (HY000): The table 'XXX'

操作:执行 alter table aa_table drop column hehe; 删除 aa_table 表中 hehe 字段。导致 ERROR 1114 (HY000): The table ‘sy_transaction_info‘ is full。 删除字段操作,磁盘可以空间需要大于表本身占据的空间(……

数据库 mysql host is blocked because of many connection errors; unb

同一个ip在短时间内产生太多(超过mysql数据库max_connection_errors的最大值,现在版本的默认值很小,可以适当修改大一点)中断的数据库连接而导致的阻塞; 解决方法: 1、提高允许的……

数据库 Bug 28450914 : ORA-600: [KDLRCI_GET_INLINE_DATA] SELECTING F

alert日志报错: 2019-11-18T07:15:12.704938 08:00 Errors in file /u01/app/oracle/diag/rdbms/sibcyb1/SIBCYB111/trace/SIBCYB111_ora_83111.trc (incident=803537) (PDBNAME=CDB$ROOT): ORA-00600: internal error code, arguments: [kdlrci_get_inl……

数据库 django2.2/mysql ImproperlyConfigured: mysqlclient 1.3.13 or

报错环境 python=3.6.5,django=2.2,PyMySQL=0.9.3 …… django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.13 or newer is required; you have 0.9.3. 解决方法: Django连接MySQL时默认使用MySQLdb驱动,但MySQLdb不支……