mysql数据库报错:翻译过来是:在“读取初始通信包”时失去与MySQL服务器的连接,系统错误:0解决方法:在mysql配置文件中添加:skip-name-resolvewindow下是my.inilinux下是my.cnf添加完成后重启mysql服务器重新连接即可
分类:
数据库 时间:
2018-11-29 12:25:18
阅读次数:
1794
一,普通打包 打包命令:mvn clean package -o -Dmaven.test.skip=true 操作流程: 1,控制台跳转到项目根目录 2,运行打包命令 二,带版本信息的全量打包 打包命令:mvn clean package -o -Dmaven.test.skip=true -Dt ...
分类:
其他好文 时间:
2018-11-27 11:09:09
阅读次数:
209
密码修改:mysqladmin -uroot -p(原始密码) password "123"查看用户信息:select user(); 跳过正常登录:mysqld_safe --skip-grant-tables,然后打开另外一个终端然后更改密码:update mysql.user set pass... ...
分类:
数据库 时间:
2018-11-27 01:13:49
阅读次数:
261
There are a total of n courses you have to take, labeled from 0 to n-1. Some courses may have prerequisites, for example to take course 0 you have to ...
分类:
其他好文 时间:
2018-11-26 19:56:59
阅读次数:
156
结果: 中断take()方法 结果: 再次修改中断方法: 将get空转,等待标志位的改变 结果显示: customer的run方法结束 再次修改代码: 结果: 前三秒:显示true 完了主函数请求中断消费者,消费者在死循环里面检测到中断的请求之后,将请求通过interrupted()函数,重置一下。 ...
分类:
其他好文 时间:
2018-11-22 11:46:28
阅读次数:
200
Maven打包跳过测试的命令 在使用mvn package进行编译、打包时,Maven会执行src/test/java中的JUnit测试用例,有时为了跳过测试,会使用参数-DskipTests和-Dmaven.test.skip=true,这两个参数的主要区别是: -DskipTests,不执行测试 ...
分类:
其他好文 时间:
2018-11-19 17:30:45
阅读次数:
191
Given the relations of all the activities of a project, you are supposed to find the earliest completion time of the project. Input Specification: Eac ...
分类:
其他好文 时间:
2018-11-18 19:31:23
阅读次数:
178
1. 5.6.38版本的数据库密码丢失找回方法: 第一步.关数据库 第二步:mysqld_safe --skip-grant-tables --skip-networking & 第三步:mysql安全模式下登录数据库 update mysql.user set password=PASSWORD( ...
分类:
数据库 时间:
2018-11-17 16:12:55
阅读次数:
176
一, 停止mysql程序 /etc/init.d/mysqld stop 或者 kill 杀mysql的进程id 通过安全模式启动数据库 mysqld_safe --skip-grant-tables --skip-networking & 查看原来数据库密码字段信息 更改密码: 5.6版本 upd ...
分类:
数据库 时间:
2018-11-14 16:43:38
阅读次数:
172
1、修改MySQL的登录设置: # vim /etc/my.cnf 在[mysqld]的段中加上一句:skip-grant-tables 例如: [mysqld] datadir=/var/lib/mysql socket=/var/lib/mysql/mysql.sock skip-grant-t ...
分类:
数据库 时间:
2018-11-11 14:17:47
阅读次数:
209