在 windows 上安装免安装版的html
一、 下载路径 https://downloads.mysql.com/archives/community/mysql
二、 解压
假设解压后的路径为:E:\Environment\mysql-5.6.30-winx64
在path环境变量下加入:E:\Environment\mysql-5.6.30-winx64\binsql
三、复制 my-default.ini ,生成 my.ini
在 [mysqld] 下面 加入 指定配置
port=3306
character_set_server=utf8
basedir=E:\Environment\mysql-5.6.30-winx64
datadir=E:\Environment\mysql-5.6.30-winx64\datawindows
完整my.ini 文件以下ide
# For advice on how to change settings please see # http://dev.mysql.com/doc/refman/5.6/en/server-configuration-defaults.html # *** DO NOT EDIT THIS FILE. It's a template which will be copied to the # *** default location during install, and will be replaced if you # *** upgrade to a newer version of MySQL. [mysqld] # Remove leading # and set to the amount of RAM for the most important data # cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%. # innodb_buffer_pool_size = 128M # Remove leading # to turn on a very important data integrity option: logging # changes to the binary log between backups. # log_bin # These are commonly set, remove the # and set as required. # basedir = ..... # datadir = ..... # port = ..... # server_id = ..... # Remove leading # to set options mainly useful for reporting servers. # The server defaults are faster for transactions and fast SELECTs. # Adjust sizes as needed, experiment to find the optimal values. # join_buffer_size = 128M # sort_buffer_size = 2M # read_rnd_buffer_size = 2M [client] port=3306 default-character-set=utf8 [mysqld] port=3306 character_set_server=utf8 #character_set_server=utf8 必定要这样写; basedir=E:\Environment\mysql-5.6.30-winx64 #解压目录 datadir=E:\Environment\mysql-5.6.30-winx64\data #解压目录下data目录,必须为data目录 sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
四、注册windows系统服务
将mysql注册为windows系统服务
操做以下:
1)从控制台进入到MySQL解压目录下的 bin 目录下:
2)输入服务安装命令:
mysqld install MySQL --defaults-file="D:\Program Files\MySQL\mysql-5.6.16-win32\my.ini"工具
安装成功后会提示服务安装成功。ui
五、启动MySQL服务
方法一:
启动服务命令为:net start mysql
若报错:MySQL 服务没法启动 1067错误;查看data目录下的err文件看错误:
2014-02-27 10:50:12 5360 [ERROR] InnoDB: .\ibdata1 can't be opened in read-write mode
2014-02-27 10:50:12 5360 [ERROR] InnoDB: The system tablespace must be writable!
2014-02-27 10:50:12 5360 [ERROR] Plugin 'InnoDB' init function returned error.
2014-02-27 10:50:12 5360 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
2014-02-27 10:50:12 5360 [ERROR] Unknown/unsupported storage engine: InnoDB
2014-02-27 10:50:12 5360 [ERROR] Aborting
解决方法:删除data目录下的ib_logfile0和ib_logfile1文件。
再次启动,正常
方法二:
打开管理工具 服务,找到MySQL服务。
经过右键选择启动或者直接点击左边的启动来启动服务。spa
六、 修改 root 帐号的密码
方法一:
刚安装完成时root帐号默认密码为空,此时能够将密码修改成指定的密码。如:123456
c:>mysql –u root
mysql>show databases;
mysql>use mysql;
mysql>update user set password=PASSWORD("新密码") where user='root';
mysql>FLUSH PRIVILEGES;
mysql>QUITcode
七、设置mysql远程访问:
grant all privileges on . to 'root'@'%' identified by 'root用户的密码' with grant optionserver
八、 安装完成。能够 下载 “Navicat premium ” 来试试 远程链接。