欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

mysql 免安装版

程序员文章站 2022-03-08 15:55:53
...

mysql zip 的安装方法

1.下载文件

mysql 下载地址

mysql 免安装版

2. 解压zip到安装的目录

选择一个进行下载,进行解压到你想放的目录磁盘我是放在 E盘下面
E:\mysqlmysql 免安装版

3. 写配置文件

进入解压的文件
创建一个文件 my.ini 发到解压的根目录下面,我的是E:\mysql\mysql-8.0.18-winx64\my.ini
注意:里面的文件路径需要修改

[mysqld]
# 设置3306端口
port=3306
# 设置mysql的安装目录
basedir=D:\MySQL\mysql-8.0.13-winx64
# 设置mysql数据库的数据的存放目录
datadir=D:\MySQL\data
# 允许最大连接数
max_connections=200
# 允许连接失败的次数。这是为了防止有人从该主机试图攻击数据库系统
max_connect_errors=10
# 服务端使用的字符集默认为UTF8
character-set-server=utf8
# 创建新表时将使用的默认存储引擎
default-storage-engine=INNODB
# 默认使用“mysql_native_password”插件认证
default_authentication_plugin=mysql_native_password
[mysql]
# 设置mysql客户端默认字符集
default-character-set=utf8
[client]
# 设置mysql客户端连接服务端时默认使用的端口
port=3306
default-character-set=utf8

mysql 免安装版

4.初始化数据库

以管理员的身份执行dos面板 也就是cmd命令
在C:\Windows\System32目录下找到cmd.exe 右击原则以管理员身份运行或者在左下角搜索cmd 右击以管理员身份运行
在dos 命令中进入在MySQL安装目录的 bin 目录下执行命令:
mysql 免安装版
执行完成之后,会打印 root 用户的初始默认密码,比如:

D:\MySQL\mysql-8.0.13-winx64\bin>mysqld --initialize --console
2018-10-30T09:47:22.079528Z 0 [System] [MY-013169] [Server] D:\MySQL\mysql-8.0.13-winx64\bin\mysqld.exe (mysqld 8.0.13) initializing of server in progress as process 40936
2018-10-30T09:47:22.080771Z 0 [Warning] [MY-013242] [Server] --character-set-server: 'utf8' is currently an alias for the character set UTF8MB3, but will be an alias for UTF8MB4 in a future release. Please consider using UTF8MB4 in order to be unambiguous.
2018-10-30T09:47:25.480866Z 5 [Note] [MY-010454] [Server] A temporary password is generated for aaa@qq.com: f0,_wUSV!VuG
2018-10-30T09:47:26.882440Z 0 [System] [MY-013170] [Server] D:\MySQL\mysql-8.0.13-winx64\bin\mysqld.exe (mysqld 8.0.13) initializing of server has completed

注意!执行输出结果里面有一段:[Note] [MY-010454] [Server] A temporary password is generated for aaa@qq.com: f0,_wUSV!VuG 其中aaa@qq.com:后面的“f0,_wUSV!VuG”就是初始密码(不含首位空格)。在没有更改密码前,需要记住这个密码,后续登录需要用到。

5. 安装服务

在MySQL安装目录的 bin 目录下执行命令(以管理员身份打开cmd命令行)

mysqld --install [服务名]

mysql 免安装版
安装完成之后,就可以通过命令net start mysql启动MySQL的服务了。

#启动服务
net start [服务名]
#停止服务
net stop [服务名]

mysql 免安装版

例如:

E:\mysql\mysql-8.0.18-winx64\bin>mysqld --install mysql_01
Service successfully installed.
 
E:\mysql\mysql-8.0.18-winx64\bin>net start mysql_01
mysqltest1 服务正在启动 .
mysqltest1 服务已经启动成功。

E:\mysql\mysql-8.0.18-winx64\bin>

六:更改密码

修改密码:
登录服务器,输入:

mysql -uroot -p

提示输入密码:密码在四中的初始化数据库之后,[Note] [MY-010454] [Server] A temporary password is generated for aaa@qq.com: f0,_wUSV!VuG,其中的“ f0,_wUSV!VuG”为默认密码;

输入如下命令,其中的“Figh.1234”为我的密码
修改成别的密码命令

注意:后面的密码要用双引号 否则会报错

ALTER USER 'root'@'localhost' IDENTIFIED BY "Figh.1234"

如图

E:\mysql\mysql-8.0.18-winx64\bin>mysql -uroot -p
Enter password: ************
#登入成功
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 9
Server version: 8.0.13
 
Copyright (c) 2000, 2018, 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.
 
#修改密码命令
mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY "Figh.1234";

Query OK, 0 rows affected (0.06 sec)
 
mysql>

6. 连接问题

mysql 搭建好了 就需要工具去连接

用Navicat连接远程MySQL数据库时,有时会出现“Navicat for mysql 1130错误”,提示错误内容为不允许连接MySQL服务。很多人都以为是防火墙在作怪,其实关掉防火墙依然不能解决这个问题,其实是是mysql无法给远程连接的用户权限问题

再次通过dos(cmd)命令进行权限的添加

mysql -u root -pFigh.1234
use mysql
update user set host='%' where user='root';
select host,user from user;
flush privileges;

依次执行完成了,就可以在 Navicat上进行连接了