返回顶部
首页 > 资讯 > 数据库 >mysql 8.0.29 winx64.zip安装配置方法图文教程
  • 742
分享到

mysql 8.0.29 winx64.zip安装配置方法图文教程

2024-04-02 19:04:59 742人浏览 八月长安
摘要

win11安装Mysql8最新压缩包版,供大家参考,具体内容如下 1、下载mysql 2、解压 3、初始化数据库并安装启动服务 以管理员身份打开CMD命令控制台cd c:/dbs

win11安装Mysql8最新压缩包版,供大家参考,具体内容如下

1、下载mysql

2、解压

image-20220511141437289

3、初始化数据库并安装启动服务

以管理员身份打开CMD命令控制台
cd c:/dbs/mysql-8.0.29/bin 进入mysql8.0.29目录
mysqld --initialize-insecure 初始化,会自动的在c:/dbs/mysql-8.0.29/data 建立目录
mysqld install 安装服务,服务名称为mysql
net start mysql 开启数据库服务

net stop mysql 关闭数据库服务
mysqld remove 卸载服务

如果要通过窗口查看服务,在运行中可以输入services.msc 打开服务窗口

4、登录服务器测试

C:\Users\WEBrx>cd \

C:\>cd dbs\mysql-8.0.29

C:\dbs\mysql-8.0.29>cd bin

#登录本机 -hlocalhost -uroot -p空没有密码 -P3306 可以不写
C:\dbs\mysql-8.0.29\bin>mysql -uroot
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 8.0.29 MySQL CommUnity Server - GPL

Copyright (c) 2000, 2022, oracle and/or its affiliates.

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> select @@hostname,@@port,@@version,@@basedir,@@datadir,now();
+------------+--------+-----------+----------------------+---------------------------+---------------------+
| @@hostname | @@port | @@version | @@basedir            | @@datadir                 | now()               |
+------------+--------+-----------+----------------------+---------------------------+---------------------+
| wp         |   3306 | 8.0.29    | C:\dbs\mysql-8.0.29\ | C:\dbs\mysql-8.0.29\data\ | 2022-05-11 14:25:17 |
+------------+--------+-----------+----------------------+---------------------------+---------------------+
1 row in set (0.00 sec)

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| infORMation_schema |
| mysql              |
| performance_schema |
| sys                |
+--------------------+
4 rows in set (0.02 sec)

mysql> select host,user,plugin from mysql.user;
+-----------+------------------+-----------------------+
| host      | user             | plugin                |
+-----------+------------------+-----------------------+
| localhost | mysql.infoschema | caching_sha2_passWord |
| localhost | mysql.session    | caching_sha2_password |
| localhost | mysql.sys        | caching_sha2_password |
| localhost | root             | caching_sha2_password |
+-----------+------------------+-----------------------+
4 rows in set (0.00 sec)

mysql> create user admin identified with mysql_native_password by 'admin';
Query OK, 0 rows affected (0.01 sec)

mysql> grant all on *.* to admin;
Query OK, 0 rows affected (0.00 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

mysql> select host,user,plugin from mysql.user;
+-----------+------------------+-----------------------+
| host      | user             | plugin                |
+-----------+------------------+-----------------------+
| %         | admin            | mysql_native_password |
| localhost | mysql.infoschema | caching_sha2_password |
| localhost | mysql.session    | caching_sha2_password |
| localhost | mysql.sys        | caching_sha2_password |
| localhost | root             | caching_sha2_password |
+-----------+------------------+-----------------------+
5 rows in set (0.00 sec)

5、使用sqlyog 连接mysql8.0.29

注意:低版本的sqlyog(13.1.1及以下)无法识别mysql新版本(5.7-8)的加密机制(caching_sha2_password)

必须使用admin用户(在步骤4中建立的使用旧加密机制(mysql_native_password)的用户)登录

image-20220511143401417

image-20220511143516818

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程网。

您可能感兴趣的文档:

--结束END--

本文标题: mysql 8.0.29 winx64.zip安装配置方法图文教程

本文链接: https://lsjlt.com/news/150972.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作