Navicat Premium 11.2.17激活(windows server2016 安装mysql5.8 和Navicat)

Navicat Premium 11.2.17激活(windows server2016 安装mysql5.8 和Navicat)

Navicat

安装目录下新建data文件夹,新建my.ini文件


管理员运行cmd

C:Windowssystem32>d:

D:>cd D:Program Filesmysql-8.0.17-winx64bin

D:Program Filesmysql-8.0.17-winx64bin> mysqld –initialize –user=mysql –console
2019-09-20T08:39:31.Z 0 [System] [MY-013169] [Server] D:Program Filesmysql-8.0.17-winx64binmysqld.exe (mysqld 8.0.17) initializing of server in progress as process 8780
2019-09-20T08:39:31.Z 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.
2019-09-20T08:39:36.Z 5 [Note] [MY-010454] [Server] A temporary password is generated for root@localhost: XNwO?EqwF9rG
2019-09-20T08:39:39.Z 0 [System] [MY-013170] [Server] D:Program Filesmysql-8.0.17-winx64binmysqld.exe (mysqld 8.0.17) initializing of server has completed

D:Program Filesmysql-8.0.17-winx64bin>
D:Program Filesmysql-8.0.17-winx64bin>mysqld –install MySQL
Service successfully installed.

D:Program Filesmysql-8.0.17-winx64bin>net start mysql
MySQL 服务正在启动 ..
MySQL 服务已经启动成功。

D:Program Filesmysql-8.0.17-winx64bin>mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or g.
Your MySQL connection id is 8
Server version: 8.0.17

Copyright (c) 2000, 2019, 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 ‘root’;
Query OK, 0 rows affected (0.01 sec)

mysql> exit
Bye

D:Program Filesmysql-8.0.17-winx64bin>mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or g.
Your MySQL connection id is 9
Server version: 8.0.17 MySQL Community Server – GPL

Copyright (c) 2000, 2019, 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> 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> alter user ‘root’@’localhost’ identified by ‘password’ password expire never;
Query OK, 0 rows affected (0.01 sec)

mysql> alter user ‘root’@’localhost’ identified with mysql_native_password by ‘root’;
Query OK, 0 rows affected (0.04 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.01 sec)Navicat Premium 11.2.17激活

mysql>

今天的文章
Navicat Premium 11.2.17激活(windows server2016 安装mysql5.8 和Navicat)分享到此就结束了,感谢您的阅读。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/121404.html

(0)
编程小号编程小号
上一篇 2024-07-07
下一篇 2024-07-07

相关推荐