mysql安装配置

1.首先到http://dev.mysql.com/ 上下载windows版,mysqlinstall,这个软件mysql为windows平台提供安装解决方案的软件,。

2.复制mysql下的my-default.ini, 在同目录下创建my.ini. my.ini为mysql的配置。最简单的配置:

1 basedir=D:/mysql-5.6.20-winx64
2 datadir=D:/mysql-5.6.20-winx64/data

base config

我的配置为:

 1 # For advice on how to change settings please see
 2 # http://dev.mysql.com/doc/refman/5.6/en/server-configuration-defaults.html
 3 # *** DO NOT EDIT THIS FILE. It‘s a template which will be copied to the
 4 # *** default location during install, and will be replaced if you
 5 # *** upgrade to a newer version of MySQL.
 6 
 7 [mysqld]
 8 character-set-server=utf8
 9 
10 # Remove leading # and set to the amount of RAM for the most important data
11 # cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
12 # innodb_buffer_pool_size = 128M
13 
14 # Remove leading # to turn on a very important data integrity option: logging
15 # changes to the binary log between backups.
16 # log_bin
17 
18 # These are commonly set, remove the # and set as required.
19 # basedir = .....
20 # datadir = .....
21 # port = .....
22 # server_id = .....
23 basedir=D:/mysql-5.6.20-winx64
24 datadir=D:/mysql-5.6.20-winx64/data
25 port=3306
26 
27 character-set-server=utf8
28 default-storage-engine=INNODB
29 innodb_data_home_dir=D:/mysql-5.6.20-winx64/data
30 innodb_data_file_path=ibdata1:12M:autoextend
31 innodb_log_group_home_dir=D:/mysql-5.6.20-winx64/data
32 
33 innodb_buffer_pool_size=512M
34 # Remove leading # to set options mainly useful for reporting servers.
35 # The server defaults are faster for transactions and fast SELECTs.
36 # Adjust sizes as needed, experiment to find the optimal values.
37 # join_buffer_size = 128M
38 # sort_buffer_size = 2M
39 # read_rnd_buffer_size = 2M 
40 
41 # sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES 

my.ini

3.设置环境变量PATH。将D:\mysql-5.6.20-winx64\bin加入path中。

4.CMD下面尝试启动mysqld,并将后台log输出在屏幕。

5.注册mysql为windows service. 以后可以使用windows service来安装mysqld和卸载mysqld的服务.

6.进入服务管理器

7.启动MySQL服务

8.net start mysql 启动mysql服务,net stop mysql 停止mysql服务

9.也可以使用mysqladmin命令关闭mysql服务。

10.使用root用户登录mysql数据库

11.show databases;显示所有数据库

12.修改root帐户的登陆密码1234:

13.创建数据库需要指定中文编码方式

14.查看MySQL存储引擎

15.创建mysql远程连接用户,设置最大权限和登陆密码。

还有一些测试mysql安装的命令:

 

 

如果发生启动错误的情况,一般是my.ini没有配置成功。

可以查看根目录下的*.err文件,针对具体情况进行排查。

其中有一种情况是将ib_logfile0,ib_logfile1删除以后,重启即可。

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。