-
启动mysql服务
- service mysqld start
-
停止mysql服务
- service mysqld stop
-
重启mysql服务
- service mysqld restart
-
查找数据库配置文件
- 默认位置 /etc/my.conf
-
mysql登录出现1045问题
- mysqld_safe --user=mysql --skip-grant-tables --skip-networking & //不经过授权表来进入服务器
- mysql -u root mysql
- use mysql; //选择数据库
- mysql> UPDATE user SET Password=PASSWORD(’newpassword’) where USER=’root’; //修改root密码
- mysql> FLUSH PRIVILEGES; //刷新权限
-
查找数据库版本
- mysql环境中
- mysql > status;