当前位置:网站首页>Installation and configuration of MariaDB
Installation and configuration of MariaDB
2022-07-06 16:20:00 【Cute Chu】
Image download 、 Domain name resolution 、 Time synchronization please click Alibaba cloud open source image station
MariaDB Installation and configuration
( I installed the chicken with ALI source )
MariaDB yes MySQL A branch of , Maintained by the open source community , use GPL licensing , Fully compatible with MySQL.
1. Install the corresponding source
vi /etc/yum.repos.d/MariaDB.repo
# Fill in the following (3 Choose one , I chose aliyuan )
[mariadb]
# http://downloads.mariadb.org/mariadb/repositories/( Official source 5.5)
name = MariaDB
baseurl = http://yum.mariadb.org/5.5/centos7-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1
[mariadb]
# Official source 10.1
name = MariaDB
baseurl = http://yum.mariadb.org/10.1/centos7-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1
[mariadb]
# Ali's source 10.4
name = MariaDB
baseurl = https://mirrors.aliyun.com/mariadb/yum/10.4/centos7-amd64/
gpgkey=https://mirrors.aliyun.com/mariadb/yum/RPM-GPG-KEY-MariaDB
gpgcheck=1
preservation , sign out 2. Clear cache , Load the configuration
yum clean all
yum makecache3. install mariadb
( Ali source mariadb The package name is lowercase , The official source is capitalized )
# official :
yum install -y MariaDB-server MariaDB-client
# Ali :
yum install -y mariadb-server mariadb 4. start-up mariadb
systemctl start mariadb4-1. relevant MariaDB An admin command
# restart
systemctl restart mariadb
# stop it
systemctl stop mariadb
# Boot from boot
systemctl enable mariadb5. see mariadb process
netstat -ntlp | grep 3306
or
netstat -ntlp | grep mysql 6.MariaDB Database initialization
mysql_secure_installation7. Initialize test login
mysql -uroot -p # Access to database 
8.MariaDB Set up utf8 code ( Add... According to actual needs )
vi /etc/my.cnf
# Enter the following :
[mysqld]
character-set-server=utf8
init-connect='SET NAMES utf8'
collation-server=utf8_unicode_ci9.MariaDB Simple use
1) Change Password
set password = PASSWORD('[email protected]'); # Set the password to [email protected]2)mysql Common commands ( part )
desc Table name # View table structure
create database Database name ; # Create database
create table Table name ; # Create data table
drop database Database name ; # Delete database
show create database Database database name ; # See how to create a database
show create table Table name ; # See how to create a table 10.MariaDB Database backup and recovery
Specific steps : Backup , recovery
precondition
create database one;
create database two;
show databases;
\q # sign out mysql
mkdir -p /tmp/mysqld
cd /tmp/mysqld
rm -rf *Choose according to your needs
1-1) Back up all databases
mysqldump -u root -p --all-databases > /tmp/mysqld/db.dump # Back up all databases
# Input password
ls # You can view the new db.dump file ( This is the file for database backup ).1-2) Back up a single database
mysqldump -u root -p one > /tmp/mysqld/one.dump # The backup name is one The database of
# Input password
ls # You'll see the new one one.dump file .2), Enter into MariaDB, Delete database , And look at the results
mysql -uroot -p
# Input password
drop database one;
drop database one;Choose according to your needs
3-1) Recover all databases
mysql -uroot -p < /tmp/mysqld/db.dump 3-2) The recovery name is one The database of
mysql -uroot -p < /tmp/mysqld/one.dumpLink to the original text :https://blog.csdn.net/weixin_51202460/article/details/123672061
边栏推荐
- Some problems encountered in installing pytorch in windows11 CONDA
- Codeforces Round #801 (Div. 2)A~C
- [exercise -11] 4 values why sum is 0 (and 4 values of 0)
- 树莓派4B64位系统安装miniconda(折腾了几天终于解决)
- 1903. Maximum odd number in string
- Frida hook so layer, protobuf data analysis
- b站 實時彈幕和曆史彈幕 Protobuf 格式解析
- 生成随机密码/验证码
- 875. Leetcode, a banana lover
- 2078. Two houses with different colors and the farthest distance
猜你喜欢

Flag framework configures loguru logstore

OneForAll安装使用

Problem - 922D、Robot Vacuum Cleaner - Codeforces

Vs2019 initial use

Basic Q & A of introductory C language

2027. Minimum number of operations to convert strings

It is forbidden to trigger onchange in antd upload beforeupload

2078. Two houses with different colors and the farthest distance

Penetration test (4) -- detailed explanation of meterpreter command

B - Code Party (girls' competition)
随机推荐
第 300 场周赛 - 力扣(LeetCode)
Calculate the time difference
拉取分支失败,fatal: ‘origin/xxx‘ is not a commit and a branch ‘xxx‘ cannot be created from it
300th weekly match - leetcode
Li Kou - 298th weekly match
Some problems encountered in installing pytorch in windows11 CONDA
Socket communication
Alice and Bob (2021 Niuke summer multi school training camp 1)
C language must memorize code Encyclopedia
Specify the format time, and fill in zero before the month and days
input 只能输入数字,限定输入
QT implementation fillet window
Li Kou: the 81st biweekly match
Advancedinstaller安装包自定义操作打开文件
Frida hook so layer, protobuf data analysis
快速转 TypeScript 指南
Sanic异步框架真的这么强吗?实践中找真理
The concept of C language array
Pyside6 signal, slot
1605. Sum the feasible matrix for a given row and column