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


边栏推荐
- [untitled]
- Ethereum Classic的难度计算|猿创征文
- 自定义 cube-ui 弹出框dialog支持多个且多种类型的input框
- Differences between basic types and packaging classes
- ROS rviz_satellite功能包可视化GNSS轨迹,卫星地图的使用
- Taobao seo training video course [22 lectures]
- bash install. SH ******** error
- 慢内容广告:品牌增长的长线主义
- Apple MDM Bypass 免越狱绕过MDM配置锁 免费
- Alibaba cloud SMS service (Complete Guide), SMS sending function implementation.
猜你喜欢

Slow content advertising: the long-term principle of brand growth

链表(二)——设计链表

Binder interview: memory management unit

Openharmony gnawing paper growth plan -- json-rpc

Oracle condition, circular statement

death_satan/hyperf-validate

Drop down list processing in Web Automation

D3D11_ Chili_ Tutorial (3): design a bindable/drawable system

YYGH-BUG-02

Development trend of mobile advertising: Leveraging stock and fine marketing
随机推荐
OpenSCAP 简介
AutoCAD C# 多段線小銳角檢測
脚本语言和编程语言
PKG package node project (express)
bash install. SH ******** error
Capacity scheduling absolute value configuration queue usage and pit avoidance
sql及list去重操作
Scripting and programming languages
阿里云短信服务(完整指南),短信发送功能实现。
Configure redis from 0
Using pytorch and tensorflow to calculate the confusion matrix of classification model
Select trigger event from easyUI drop-down box
YYGH-6-微信登录
Use of JDBC
YYGH-8-预约挂号
AutoCAD C # Polyline Small Sharp angle Detection
ROS rviz_satellite功能包可视化GNSS轨迹,卫星地图的使用
Parsing ng template with let total in NZ Pagination
pkg打包node工程(express)
【Paper Reading-3D Detection】Fully Convolutional One-Stage 3D Object Detection on LiDAR Range Images

