1、编辑 mysql 的配置文件 /etc/my.cnf ,在 [mysqld] 下添加以下内容。 skip-grant-tables 2、重启 MySQL 服务。 service mysql restart 3、不使用密码直接登录 MySQL。 mysql 4、切换到 mysql 库,修改账户密码 ...
分类:
数据库 时间:
2020-11-11 16:14:57
阅读次数:
16
1、以管理员身份打开cmd窗口; 2、停止mysql服务,cmd输入命令net stop mysql ; 或者在服务中停止mysql(如下图); 3、转到mysql服务bin目录, 运行命令 .\mysqld --console --skip-grant-tables --shared-memory ...
分类:
数据库 时间:
2020-11-07 17:23:21
阅读次数:
25
一、问题 升级java11后,maven命令打包报错: mvn clean package -Dmaven.test.skip=true [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8 ...
分类:
编程语言 时间:
2020-11-06 01:37:38
阅读次数:
23
mysql8.0版本在配置文件my.ini[mysqld]加上skip-grant-tables后无法启动 需要手动去任务管理器中,关闭mysql服务,步骤如下: 需要用管理员身份打开一个命令提示符窗口,然后输入mysqld --console --skip-grant-tables --share ...
分类:
数据库 时间:
2020-10-30 12:54:47
阅读次数:
22
葵花宝典 flume 1. Flume组成,Put事务,Take事务 2. Flume拦截器 3. Flume Channel选择器 4. Flume监控器 5. Flume采集数据会丢失吗?(防止数据丢失的机制) 6. Flume内存 7. FileChannel优化 1. Flume组成,Put ...
分类:
Web程序 时间:
2020-10-29 10:09:33
阅读次数:
36
WEB服务器和DB服务器重启后,突然出现WEB页面打开延迟卡顿问题。 静态页面速度很快,php等页面很慢 排查发现DB的mysql.log提示reslove 失败 2020-09-24T07:35:17.212363Z 13607 [Warning] IP address 'X.X.X.X' cou ...
分类:
数据库 时间:
2020-09-24 22:10:13
阅读次数:
78
看了ES6的官方文档,把常用到的一些对象的方法记录一下,以便增加印象。 (1)for...in for...in循环遍历对象自身的和继承的可枚举属性(不含 Symbol 属性)。 let obj = { 'code': 123, 'name': 'take', 'ccc': function(){} ...
分类:
其他好文 时间:
2020-09-24 22:08:25
阅读次数:
52
可以通过命令行查看所有marker,包括内置和自定义的 pytest --markers 内置marker 内置marker本文先讲usefixtures 、filterwarnings 、skip 、skipif 、xfail这5个。参数化的marker我会写在《pytest参数化》中,hook的 ...
分类:
其他好文 时间:
2020-09-24 20:55:27
阅读次数:
31
FatMouse believes that the fatter a mouse is, the faster it runs. To disprove this, you want to take the data on a collection of mice and put as large ...
分类:
其他好文 时间:
2020-09-23 23:55:07
阅读次数:
46
maven 命令:clean package -D maven.test.skip=true -P product 1.命令很简单是:清class文件,打包构建,跳过测试,注意最后一个 -P product,-P maven 会激活项目下的pom.xml配置的<profiles>标签下id为prod ...
分类:
其他好文 时间:
2020-09-18 01:56:31
阅读次数:
35