当前位置:网站首页>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


边栏推荐
- 19 fonctions de perte d'apprentissage profond
- What is webrtc?
- MySQL common functions
- Failed to start component [StandardEngine[Catalina]. StandardHost[localhost]]
- 不会还有人只会用forEach遍历数组吧?
- Maskrcnn, fast RCNN, fast RCNN excellent video
- idea根据数据库表生成实体类
- Official answers to the "network security" competition questions of the 2022 national vocational college skills competition
- Differences between overloads, rewrites, abstract classes and interfaces
- D3D11_ Chili_ Tutorial (3): design a bindable/drawable system
猜你喜欢

Uni app wechat applet sharing function

CAD二次开发+NetTopologySuite+PGIS 引用多版本DLL问题
![Taobao seo training video course [22 lectures]](/img/81/21e844542b35010760d061abe905e9.jpg)
Taobao seo training video course [22 lectures]

Binder interview: memory management unit

自定义 cube-ui 弹出框dialog支持多个且多种类型的input框

Deep learning 19 loss functions

YYGH-BUG-03

YYGH-BUG-02

Alert pop-up processing in Web Automation

Yygh-7-user management
随机推荐
Valueerror: iterative over raw text documents expected, string object received
Caused by: com.fasterxml.jackson.databind.exc.InvalidFormatException:异常解决
Yolact++ pytoch environment
socke.io長連接實現推送、版本控制、實時活躍用戶量統計
Use the SQL SELECT count distinct query statement to count the total number of unique values of a field in the database
OpenGL API learning (2008) client server client server
Alert pop-up processing in Web Automation
pytorch详解
Socket. Io long Connection Push, version Control, Real - Time Active user volume Statistics
5-minute NLP: summary of time chronology from bag of words to transformer
[MySQL] all query tables contain 20million data -- how to optimize SQL
CAD secondary development +nettopologysuite+pgis reference multi version DLL
[untitled]
YYGH-8-预约挂号
Failed to start component [StandardEngine[Catalina].StandardHost[localhost]]
Syn retransmission caused by IPVS
High quality domestic stereo codec cjc8988, pin to pin replaces wm8988
Global country (and region) information JSON data
@Autowired注解为空的原因
idea创建类时自动添加注释

