1、配置环境变量
我的电脑->属性->高级->环境变量
选择PATH,在其后面添加: 你的mysql bin文件夹的路径 (如:C:\Program Files\MySQL\MySQL Server 5.6\bin )
PATH=.......C:\Program Files\MySQL\MySQL Server 5.6\bin (注意是追加,不是覆盖)
2、my.ini文件 (ansc编码)
配置文件是在C:\Program Files\MySQL\MySQL Server 5.6\my.ini,或者自己建立一个my.ini文件,
在其中修改或添加配置(如图):
[mysqld]
basedir=C:\Program Files\MySQL\MySQL Server 5.6(mysql所在目录)
datadir=C:\Program Files\MySQL\MySQL Server 5.6\data (mysql所在目录\data)
不用新建data文件夹。
3、
以管理员身份运行cmd(一定要用管理员身份运行,不然权限不够),
输入:cd C:\Program Files\MySQL\MySQL Server 5.6\bin 进入mysql的bin文件夹
mysqld -install
继续在cmd中输入:net start mysql
注意:这个时候经常会出现错误2和错误1067。
如果出现“错误2 系统找不到文件”,检查一下是否修改过配置文件或者是否进入在bin目录下 *** 作,如果配置文件修改正确并且进入了bin文件夹,需要先删除mysql(输入 mysqld -remove)再重新安装(输入 mysqld -install);
如果出现错误1067,那就是配置文件修改错误,确认一下配置文件是否正确。
4、第三步启动时,报错:
mysql无法启动,服务没有报告任何错误
bin下执行:
mysqld --initialize-insecure
会创建data目录。再次启动mysql
5、首次安装的mysql,没有密码
bin下
mysql -u root - p
mysql>
设置密码有很多方法:
1.用root 进入mysql后
mysql>set password =password('你的密码')
mysql>flush privileges
2.使用GRANT语句
mysql>grant all on . to 'root'@'localhost' IDENTIFIED BY '你的密码'with grant option
mysql>flush privileges
3.进入mysql库修改user表
mysql>use mysql
mysql>update user set password=password('你的密码') where user='root'
mysql>flush privileges
下面主要分为五大步给大家介绍mySql 5.7.14 解压版安装教程。感兴趣的朋友一起看看吧。第一步:下载最近的MySQL文件并且解压:
下载最新版的MySQL–mysql-5.7.12下载地址
将下载到的文件解压缩到自己喜欢的位置,例如我自己的位置是D:\MySQL\mysql-5.7.12-winx64
第二步:配置环境变量
这里不多说,bin目录配置到path下面就行了。
第三步:添加配置文件
直接复制一个解压路径下面的 my-default.ini文件,重命名为my.ini然后编辑该文件,内容如下:
<code class="hljs tex has-numbering" style="display: blockpadding: 0pxcolor: inheritbox-sizing: border-boxfont-family: "Source Code Pro", monospacefont-size:undefinedwhite-space: preborder-radius: 0pxword-wrap: normalbackground: transparent">
<span class="hljs-special" style="box-sizing: border-boxcolor: rgb(102, 102, 0)">[</span>mysqld<span class="hljs-special" style="box-sizing: border-boxcolor: rgb(102, 102, 0)">]
</span>
basedir=D:<span class="hljs-command" style="box-sizing: border-boxcolor: rgb(0, 0, 136)">\MySQL</span><span class="hljs-command" style="box-sizing: border-boxcolor: rgb(0, 0, 136)">\mysql</span>-5.7.12-winx64<span class="hljs-command" style="box-sizing: border-boxcolor: rgb(0, 0, 136)">\ </span>datadir=D:<span class="hljs-command" style="box-sizing: border-boxcolor: rgb(0, 0, 136)">\MySQL</span><span class="hljs-command" style="box-sizing: border-boxcolor: rgb(0, 0, 136)">\mysql</span>-5.7.12-winx64<span class="hljs-command" style="box-sizing: border-boxcolor: rgb(0, 0, 136)">\data</span><span class="hljs-command" style="box-sizing: border-boxcolor: rgb(0, 0, 136)">\ </span>port=3306</code><ul class="pre-numbering" style="box-sizing: border-boxposition: absolutewidth: 50pxtop: 0pxleft: 0pxmargin: 0pxpadding: 6px 0px 40pxborder-right: 1px solid rgb(221, 221, 221)list-style: nonetext-align: rightbackground-color: rgb(238, 238, 238)"><li style="box-sizing: border-boxpadding: 0px 5px">1</li>
<li style="box-sizing: border-boxpadding: 0px 5px">2</li>
<li style="box-sizing: border-boxpadding: 0px 5px">3</li>
<li style="box-sizing: border-boxpadding: 0px 5px">4</li>
</ul>
这里需要注意的主要有两个问题:
1、basedir是上面的你的mysql文件的解压路径。
2、在该路径下面新建一个名为data的空文件夹,就是datadir。
第四步:初始化数据库并且配置服务
在做这一步之前,一定要注意两个问题!!!切记!!!
第一: 以管理员自身份打开CMD;
第二:用cd命令进入到你MySQL文件的解压路径!
然后执行 mysqld --initialize --user=mysql --console
执行成功之后,在打印的文字的最后面是数据库的初始密码,记得要拷贝下来,用鼠标选中,回车一下找个地方ctrl+v就行了。
上面弄完之后,再管理员自身份打开CMD执行
mysqld --install MySQL –>添加到系统服务
net start mysql –>启动mysql服务
第五步:修改mysql的初始密码
1、打开CMD执行 : mysql -u root -p
2、输入你刚才保存的数据库的初始密码。
3、执行 set password = password(‘***NewPassword***‘)
NewPassword的位置输入你自己的新密码就行了。
安装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
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)