数据库
威威dett
这个作者很懒,什么都没留下…
展开
-
mysql升级Caused by: com.mysql.jdbc.exceptions clause; this is incompatible with sql_mode=only_full_gr
mysql由5.7.22升级5.7.25版本的时候报Err1055异常Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column...原创 2020-01-06 15:05:02 · 213 阅读 · 0 评论 -
mysql 数据库导入导出方法
mysql 数据库导入导出一般形式:mysqldump -h IP -u 用户名 -p -d 数据库名 > 导出的文件名参数解析:-h:表示host地址-u:表示user用户-p:表示password密码-d:表示不导出数据注意:(1)-p 后面不能加password,只能单独输入数据库名称(2)mysqldump是在cmd下的命令,不能再mysql下面,即不能进入m...原创 2019-03-14 11:04:37 · 35322 阅读 · 6 评论 -
CentOS安装MySQL的步骤
1、官方安装文档http://dev.mysql.com/doc/mysql-yum-repo-quick-guide/en/2、下载 Mysql yum包,官方链接,可自行选择版本http://dev.mysql.com/downloads/repo/yum/下载到本地再上传到服务器,或者使用wget 直接下载wget http://repo.mysql.com/mysql57-com...转载 2019-03-13 17:56:46 · 254 阅读 · 0 评论 -
ERROR 1045 (28000): Access denied for user 'opensips'@'localhost' (using password: YES)
在用户表中插入数据时:执行过mysql授权:grant all privileges on opensips.* to opensips@'%' identified by '123456' with grant option;刷新权限flush privileges;之后在对数据库表进行操作时报如下错误mysql: [Warning] Using a password on th...原创 2019-03-19 11:29:17 · 1291 阅读 · 4 评论 -
ERROR: PID file /var/run/opensips.pid does not exist -- OpenSIPS start failed
ERROR: PID file /var/run/opensips.pid does not exist -- OpenSIPS start failed解决办法:查询密码设置表mysql> SHOW VARIABLES LIKE 'validate_password%';+--------------------------------------+--------+| V...原创 2019-03-19 11:46:32 · 3771 阅读 · 0 评论 -
MySQL5.7 添加用户、删除用户与授权
登录mysql:mysql -uroot -prootMySQL5.7 mysql.user表没有password字段改 authentication_string;一. 创建用户:命令:CREATE USER 'username'@'host' IDENTIFIED BY 'password';例子: CREATE USER 'dog'@'localhost' IDENTIFIED ...原创 2019-04-27 13:26:52 · 310 阅读 · 0 评论