当前位置:网站首页>MySQL (I) - Installation
MySQL (I) - Installation
2022-06-28 06:09:00 【Mu Di%】
- Create a configuration "my.ini" Put the file in the unzipped file

- The contents of the configuration file are as follows
[mysqld]
# Set up 3306 port
port=3306
# Set up mysql Installation directory
basedir=D:\MySQL\mysql-8.0.28-winx64
# Maximum connections allowed
max_connections=200
# Number of connection failures allowed . This is to prevent someone from trying to attack the database system from the host
max_connect_errors=10
# The character set used by the server defaults to UTF8
character-set-server=utf8
# The default storage engine that will be used when creating a new table
default-storage-engine=INNODB
# By default “mysql_native_password” Plug in authentication
default_authentication_plugin=mysql_native_password
[mysql]
# Set up mysql Client default character set
default-character-set=utf8
- Open a command prompt as an administrator , Get into bin Under the table of contents
# Installation services
mysqld install
# initialization Get the initial password
mysqld --initialize --console
# start-up MySQL service
net start mysql
# Sign in
mysql -u root -p
# Change Password
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY ' New password ';

# Refresh database
FLUSH PRIVILEGES;

- docking navicat
use mysql;
Database changed


边栏推荐
- Deep learning 19 loss functions
- 基于Kotlin+JetPack实现的MVVM框架的示例
- The length of pytorch dataloader the difference between epoch and iteration
- YYGH-6-微信登录
- Alibaba cloud SMS service (Complete Guide), SMS sending function implementation.
- easyui 重置多条件查询
- Alert pop-up processing in Web Automation
- AutoCAD C polyline small acute angle detection
- @Autowired注解为空的原因
- MySQL(一)——安装
猜你喜欢

Apple MDM bypass jailfree bypass MDM configuration lock free

YYGH-7-用户管理

【Paper Reading-3D Detection】Fully Convolutional One-Stage 3D Object Detection on LiDAR Range Images

death_satan/hyperf-validate

Small ball playing

报错--解决core-js/modules/es.error.cause.js报错

High quality domestic stereo codec cjc8988, pin to pin replaces wm8988

异常处理(一)——空指针和数组索引越界

Caused by: com.fasterxml.jackson.databind.exc.InvalidDefinitionException: Cannot construct instance

Common basic functions of Oracle
随机推荐
Install redis on windows and permanently change the password, and integrate redis with the SSM framework
Valueerror: iterative over raw text documents expected, string object received
API learning of OpenGL (2006) glclientactivetexture
Syn retransmission caused by IPVS
Development trend of mobile advertising: Leveraging stock and fine marketing
Xcode13.3.1 项目执行pod install后报错
Academic search related papers
马赛克数据增强 mosaic
JDBC学习(一)——实现简单的CRUD操作
Example of MVVM framework based on kotlin+jetpack
深度学习19种损失函数
脚本语言和编程语言
【无标题】
CAD secondary development +nettopologysuite+pgis reference multi version DLL
Global country (and region) information JSON data
Alert pop-up processing in Web Automation
重载,重写的区别,抽象类,接口的区别
Data midrange: implementation and summary of AI midrange
pytorch详解
链表(三)——反转链表

