y:to substitute this matchn:to skip this matcha:to substitute this and all remaining matchesq:to quit the commandl:to substitute this match and quit (...
分类:
系统相关 时间:
2014-11-22 20:17:27
阅读次数:
277
1 /* 启动MySQL */ 2 net start mysql 3 4 /* 连接与断开服务器 */ 5 mysql -h 地址 -P 端口 -u 用户名 -p 密码 6 7 /* 跳过权限验证登录MySQL */ 8 mysqld --skip-grant...
分类:
数据库 时间:
2014-11-19 18:24:45
阅读次数:
268
Spring Batch_Intercepting Step Execution_配置SkipListener 关于配置skip:http://my.oschina.net/xinxingegeya/blog/346244 先看一下StepListener.java 接口的继承关系图: StepExecutionListener StepExecut...
分类:
编程语言 时间:
2014-11-19 16:32:08
阅读次数:
424
Spring Batch_Intercepting Job Execution_配置JobExecutionListener 关于spring batch skip 的配置请看:http://my.oschina.net/xinxingegeya/blog/346244 在job的运行期间,我们可以捕捉job 的运行开始和结束,...
分类:
编程语言 时间:
2014-11-19 14:20:46
阅读次数:
231
Spring Batch_Configuring Skip Logic_配置允许抛出的异常 spring 官方文档:http://docs.spring.io/spring-batch/trunk/reference/html/configureStep.html#configuringSkip 当spring batch 处理过程中,可能要发...
分类:
编程语言 时间:
2014-11-19 12:47:19
阅读次数:
277
原文链接 http://blog.chinaunix.net/uid-26642180-id-3377717.html1.修改# vi /etc/my.cnf在[mysqld]的段中加上一句:skip-grant-tables例如:[mysqld]datadir=/var/lib/mysqlsock...
分类:
数据库 时间:
2014-11-19 00:19:33
阅读次数:
205
windows下解决mysql忘记密码
mysql有时候忘记密码了怎么办?我给出案例和说明!一下就解决了!
Windows下的实际操作如下
1.关闭正在运行的MySQL。
2.打开DOS窗口,转到mysql\bin目录。
3.输入mysqld --skip-grant-tables回车。如果没有出现提示信息,那就对了。
...
分类:
数据库 时间:
2014-11-18 13:34:59
阅读次数:
166
mysql忘记root密码解决办法:#vi/etc/mysql/my.cnf(在[mysqld]下添加)按a或i进入编译模式skip-grant-tables按Esc键退出编译模式:wq(保存并退出)#servicemysqlrestart#mysql>showdatabases;>usemysql;>updateusersetpassword=password(‘123456‘)whereuser=‘root‘;(..
分类:
数据库 时间:
2014-11-17 19:47:35
阅读次数:
224
Skip List | Set 1 (Introduction)Can we search in a sorted linked list in better than O(n) time?The worst case search time for a sorted linked list is ...
分类:
其他好文 时间:
2014-11-16 15:49:53
阅读次数:
173
在[mysqld]的段中加上一句:skip-grant-tables 如下[mysqld]skip-grant-tables 即可不输入密码就可以进入mysql server,然后就可以随便修改数据库了中的root密码了。
分类:
数据库 时间:
2014-11-15 12:50:47
阅读次数:
165