会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
⬆️小马哥⬆️
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
7
8
9
10
11
12
13
14
15
···
92
下一页
2019年6月15日
Go -- this user requires mysql native password authentication 错误
摘要: this user requires mysql native password authentication 在连接mysql的url上加上?allowNativePasswords=true,这次正常了。
阅读全文
posted @ 2019-06-15 13:32 ma_fighting
阅读(2436)
评论(0)
推荐(0)
2019年6月14日
MySQL数据库可以用任意ip连接访问的方法
摘要: > use mysql; > update user set host='%' where host='localhost'; > flush privileges;
阅读全文
posted @ 2019-06-14 19:31 ma_fighting
阅读(2234)
评论(0)
推荐(0)
2019年6月13日
Mysql --- Incorrect table definition; there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause
摘要: 我使用的5.5的mysql数据库会报这个错, 换成5.7的就可以了
阅读全文
posted @ 2019-06-13 14:42 ma_fighting
阅读(313)
评论(0)
推荐(0)
2019年6月11日
Error: unable to load xmlsec-openssl library
摘要: yum install libxml2-devel xmlsec1-devel xmlsec1-openssl-devel libtool-ltdl-devel
阅读全文
posted @ 2019-06-11 19:35 ma_fighting
阅读(333)
评论(0)
推荐(0)
count(1)、count(*)与count(列名)的执行区别
摘要: 1. count(1) and count(*) 当表的数据量大些时,对表作分析之后,使用count(1)还要比使用count(*)用时多了! 从执行计划来看,count(1)和count(*)的效果是一样的。 但是在表做过分析之后,count(1)会比count(*)的用时少些(1w以内数据量),
阅读全文
posted @ 2019-06-11 15:43 ma_fighting
阅读(648)
评论(0)
推荐(0)
2019年6月6日
Linux下的压缩zip,解压缩unzip命令详解及实例
摘要: Linux下的压缩解压缩命令详解及实例 实例:压缩服务器上当前目录的内容为xxx.zip文件 zip -r xxx.zip ./* 解压zip文件到当前目录 unzip filename.zip 另:有些服务器没有安装zip包执行不了zip命令,但基本上都可以用tar命令的,实例如下: tar -z
阅读全文
posted @ 2019-06-06 19:00 ma_fighting
阅读(164744)
评论(0)
推荐(0)
2019年6月4日
linux centos 如何查看操作系统版本信息
摘要: cat /etc/redhat-release
阅读全文
posted @ 2019-06-04 10:42 ma_fighting
阅读(2900)
评论(0)
推荐(0)
2019年6月1日
These dependencies were not found: *!!vue-style-loader!css-loader?
摘要: 在vue中使用less首先要下载依赖:npm install less less-loader --save-dev 下载好之后就可以.vue文件中使用lang="less"和@import
阅读全文
posted @ 2019-06-01 16:06 ma_fighting
阅读(3721)
评论(0)
推荐(0)
Git如何永久删除某个重要文件文件或文件夹 (包括历史记录) 强制
摘要: 有些时候不小心上传了一些敏感文件(例如密码), 或者不想上传的文件(没及时或忘了加到.gitignore里的), 而且上传的文件又特别大的时候, 这将导致别人clone你的代码或下载zip包的时候也必须更新或下载这些无用的文件, 因此, 我们需要一个方法, 永久的删除这些文件(包括该文件的历史记录)
阅读全文
posted @ 2019-06-01 15:54 ma_fighting
阅读(6851)
评论(0)
推荐(2)
2019年5月29日
LDAP的filter查询详解
摘要: 转: 等于(EQUAL TO): =大于等于(Greater than): >=小于等于(Less than): <=通配符(wildcard): * 逻辑运算符:逻辑与(logical AND): & 逻辑或(logical OR): | 逻辑非(logical NOT): ! 以用户信息存储来举
阅读全文
posted @ 2019-05-29 17:40 ma_fighting
阅读(8312)
评论(0)
推荐(0)
上一页
1
···
7
8
9
10
11
12
13
14
15
···
92
下一页
公告