MYSQL绿色安装过程

MYSQL绿色安装过程

MYSQL绿色安装过程

# These are commonly set, remove the # and set as required.
basedir = "D:\Program Files\mysql-5.6.24-win32"
datadir = "D:\Program Files\mysql-5.6.24-win32\data"
port = 3306
character_set_server=utf8
# server_id = .....

MYSQL绿色安装过程

MYSQL绿色安装过程

在安装的时候如果遇到install/remove of the service denied!错误的。需要将cmd.exe以管理员的方式运行。

MySQL修改root密码

用SET PASSWORD命令

  mysql -u root

  mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('newpass');

上一篇:微软今日发布汇总:VS2015, .NET 4.6, C# 6.0, F# 4.0等重量级产品正式上线


下一篇:C++学习之嵌套类和局部类