如何在64位WIN7下安装64位的解压版MySQLmysql-5.6.14

如何在64位WIN7下安装64位的解压版MySQLmysql-5.6.14,第1张

安装MySQLmysql-5.6.14可以参考如下安装步骤:

1、将解压缩后的文件放到自己想要的地方,并配置环境变量。示例中存放的目录为:F:\mysql\mysql-5.6.14-winx64

2、在环境变量中添加:MYSQL_HOME:F:\mysql\mysql-5.6.14-winx64,在path路径中加入:%MYSQL_HOME%\bin。配置环境变量不是必须的,只是为了能更方便的在命令行中使用mysql的命令行工具。

3、修改ini配置文件

5.6.14的解压缩版里有一个my-default.ini文件,copy一份改名为my.ini放在同级目录下。修改my.ini, my.ini内容如下:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

# 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]

loose-default-character-set=utf8

basedir = F:/mysql/mysql-5.6.14-winx64

datadir = F:/mysql/mysql-5.6.14-winx64/data

[client]

loose-default-character-set=utf8

[WinMySQLadmin]

Server=F:/mysql/mysql-5.6.14-winx64/bin/mysqld.exe

# 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

# 设置mysql的安装目录

# 设置mysql数据库的数据存放目录

# These are commonly set, remove the # and set as required.

# basedir = .....

# datadir = .....

# port = .....

# server_id = .....

character-set-server=utf8

# 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

sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES

4、安装服务

开始——所有程序——附件——命令提示符,右键以管理员身份运行。 输入命令:

1

2

3

4

C:\>f:

F:\>cd F:\mysql\mysql-5.6.14-winx64\bin

F:\mysql\mysql-5.6.14-winx64\bin>mysqld -install

Service successfully installed.

5、启动服务

1

2

F:\mysql\mysql-5.6.14-winx64\bin>cd\

F:\>net start mysql

MySQL 服务正在启动 .

MySQL 服务已经启动成功。

6、配置用户

还在上面的命令窗口里面,输入命令:mysql -u root -p

回车后提示输入密码。

mysql解压缩版初次安装管理员root的密码为空,因此直接再回车一次就登入mysql数据库了。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

F:\>mysql -u root -p

Enter password:

Welcome to the MySQL monitor. Commands end with or \g.

Your MySQL connection id is 1

Server version: 5.6.14 MySQL Community Server (GPL)

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its

affiliates. Other names may be trademarks of their respective

owners.

Type 'help' or '\h' for help. Type '\c' to clear the current input statement.

成功后

输入命令:use mysql/*使用mysql数据库*/

mysql>use mysql

Database changed

输入命令:select host,user,password from user/* 查看系统的账户信息 */

mysql>select host,user,password from user

+-----------+------+----------+

| host | user | password |

+-----------+------+----------+

| localhost | root | |

| 127.0.0.1 | root | |

| ::1 | root | |

| localhost | | |

+-----------+------+----------+

4 rows in set (0.00 sec)

host:代表mysql服务允许哪个IP来的请求。localhost和127.0.0.1指mysql服务所在的主机,即本地。::1是IPV6的IP地址写法,

全称为:0000:0000:0000:0000:0000:0000:0000:0001。现在都是IPV4的网络,可以不用管他。

user:指账户名称。不同的host下账户名称可以相同。

password:密码。

可以看到,默认账户里只支持本地连接,并且账户没有密码。现在的问题明确了,就是要将匿名用户删除,为root用户添加远程访问和密码,再为自己添加个人账户。指令如下:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

mysql>update user set password=PASSWORD('root') where user='root'

Query OK, 3 rows affected (0.00 sec)

Rows matched: 3 Changed: 3 Warnings: 0

mysql>grant all on *.* to root@'%' identify by 'root'

ERROR 1064 (42000): You have an error in your SQL syntaxcheck the manual that

corresponds to your MySQL server version for the right syntax to use near 'ident

ify by 'root'' at line 1

mysql>grant all on *.* to walle@'%' identify by '123456' with grant option

ERROR 1064 (42000): You have an error in your SQL syntaxcheck the manual that

corresponds to your MySQL server version for the right syntax to use near 'ident

ify by '123456' with grant option' at line 1

mysql>delete from where user=''

ERROR 1064 (42000): You have an error in your SQL syntaxcheck the manual that

corresponds to your MySQL server version for the right syntax to use near 'where

user=''' at line 1

mysql>select host,user,password from user

+-----------+------+-------------------------------------------+

| host | user | password |

+-----------+------+-------------------------------------------+

| localhost | root | *81F5E21E35407D884A6CD4A731AEBFB6AF209E1B |

| 127.0.0.1 | root | *81F5E21E35407D884A6CD4A731AEBFB6AF209E1B |

| ::1 | root | *81F5E21E35407D884A6CD4A731AEBFB6AF209E1B |

| localhost | | |

+-----------+------+-------------------------------------------+

4 rows in set (0.00 sec)

mysql>commit

Query OK, 0 rows affected (0.00 sec)

mysql>flush privileges

Query OK, 0 rows affected (0.00 sec)

https://zhidao.baidu.com/question/712115427901938245.html

1、解压缩,比如到d:\,为了方便,改一下路径,比如mysql

2、开始/运行,输入cmd,回车进入命令行

d:

cd mysql\bin

安装mysql服务

mysqld.exe --install (默认服务名称是mysql或者mysqld.exe --install "mysql5"修改服务名称)

删除mysql服务

mysqld.exe --remove(或者mysqld.exe --remove "mysql5")

3、ini参数配置文件d:\mysql\

复制mysql-small.ini为my.ini

4、启动停止服务

a)在命令行启动/停止

net start mysql

net stop mysql

b)或者去控制面板找服务启动

c)或者开始/运行输入services.msc,确定后,找到mysql启动

在64位机器上,如果你想要连接32位mysql ,一般会安装mysql connector/ODBC 64位,并在配置ODBC数据源测试中连接正常,但在程序连接,如ASP、asp.net、VB、Delphi 等软件访问数据库时,却提示找不到ODBC驱动。

这个问题网上找了很多资料,很多开发者甚至放弃使用mysql数据库,或者用其它开发语言如php代替。

本人尝试了大半天,终于找到问题的解决办法:因为你用的32位的mysql,那么你应该用32位的odbc配置管理器,而不是系统菜单默认的64位ODBC配置,请在 Windows\SysWOW64\ 下找到32位的ODBC配置工具 odbcad32.exe ,运行它,然后配置你需要的DSN。最后程序连接,测试OK。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/8477180.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-16
下一篇 2023-04-16

发表评论

登录后才能评论

评论列表(0条)

保存