1、日志中出现 [ERROR] InnoDB: The Auto-extending innodb_system data file './ibdata1' is of a different size 640 pages (rounded down to MB) than specified in ...
分类:
数据库 时间:
2018-08-19 11:08:28
阅读次数:
252
1、原理 通过配置参数“skip_grant_tables”在mysql启动时跳过grant_tables(授权表),从而通过命令来充值root帐号的密码 2、方式 首先需要停止mysql服务 (1)在my.ini文件的[mysqld]块下增加“skip_grant_tables”,然后重启mysq ...
分类:
数据库 时间:
2018-08-19 10:54:00
阅读次数:
238
MySQL启动时必需到usr/local/mysql目录的问题解决方法
分类:
数据库 时间:
2018-08-09 18:32:19
阅读次数:
531
[root@localhost ~]# /etc/init.d/mysqld start # 启动 MySQL,实际上是调用 mysqld_safe 程序来启动[root@localhost ~]# /etc/init.d/mysqld stop # 关闭 MySQL,实际上是直接 kill $my ...
分类:
数据库 时间:
2018-08-06 00:46:39
阅读次数:
186
MySQL启动与关闭 登录MySQL 学会使用MySQL的帮助命令 如何修改MySQL密码 如何找回丢失的密码 ...
分类:
数据库 时间:
2018-08-05 23:32:15
阅读次数:
336
* mysql的数据操作语句(通过dos命令语句) 1. 通过windows+r输入cmd打开dos命令窗口,输入命令‘net start mysql’启动你的电脑mysql服务。 2. 输入‘mysql -uroot -p××××’(u和p之后没有空格)进入自己的mysql管理模式,其中u代表的是 ...
分类:
数据库 时间:
2018-08-02 16:54:37
阅读次数:
232
为了一键把es、head插件、es-sql插件、mysql、cboard都启动起来。不用每次来回点bat文件。新做了一个bat记录如下。 其中几个知识点: 1.bat中用start模拟多线程,启动多个bat文件。 2.在start中如何启动grunt和node。 3.每个线程启动的时间间隔用ping ...
分类:
其他好文 时间:
2018-07-25 16:14:31
阅读次数:
174
一、启动 1.查看启动命令所在目录 macdeMacBook Pro:~ mac$ ps ef|grep mysql 2.进入命令目录 macdeMacBook Pro:~ mac$ cd /usr/local/mysql/bin 3.启动 macdeMacBook Pro:bin mac$ sud ...
分类:
数据库 时间:
2018-07-22 19:22:15
阅读次数:
184
一、安装 1、安装mysql服务 sudo apt-get install mysql-server 2、安装mysql客户端 sudo apt-get install mysql-client 3、测试是否成功 sudo netstat -tap | grep mysql 4、启动数据库服务 su ...
分类:
数据库 时间:
2018-07-22 00:19:17
阅读次数:
186