当前位置:网站首页>Installation and configuration of MariaDB
Installation and configuration of MariaDB
2022-06-29 19:06:00 【Meng 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 = MariaDBbaseurl = http://yum.mariadb.org/5.5/centos7-amd64gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDBgpgcheck=1[mariadb]# Official source 10.1name = MariaDBbaseurl = http://yum.mariadb.org/10.1/centos7-amd64gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDBgpgcheck=1[mariadb]# Ali's source 10.4name = MariaDBbaseurl = https://mirrors.aliyun.com/mariadb/yum/10.4/centos7-amd64/gpgkey=https://mirrors.aliyun.com/mariadb/yum/RPM-GPG-KEY-MariaDBgpgcheck=1 preservation , sign out 2. Clear cache , Load the configuration
yum clean allyum 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=utf8init-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 mysqlmkdir -p /tmp/mysqldcd /tmp/mysqldrm -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
边栏推荐
- 打新债线上开户安全吗
- 从CIO到顾问:IT领导者的转型之路
- 2. how to install MySQL database in Galaxy Kirin offline mode
- 高能直播,大咖云集!邀你共启BizDevOps探索之路。
- ovirt数据库修改删除节点
- Determination of concurrent number of pressure measurement
- Data analysis time series prediction
- Several code screenshots beautification tools worth collecting by programmers
- 什么是多范式编程语言,其中的“多范式”是什么意思?
- Unittest unit test framework
猜你喜欢
随机推荐
金鱼哥RHCA回忆录:DO447构建高级作业工作流--创建工作流作业模板并启动工作流作业
MySQL Enterprise Development Specification
防汛救援便携式应急通信系统解决方案
AI场景存储优化:云知声超算平台基于 JuiceFS 的存储实践
The strategy of convertible bonds -- - (cake sharing, premium, forced redemption, downward revision, double low)
75.二叉搜索树额最近公共祖先
MySQL enterprise development specification
76. nearest common ancestor of binary tree
元素等待机制
Advanced features of selenium webdriver
Apache inlong million billion level data stream processing
PHP outputs all dates between two specified dates
Mobile end test
sql server备份以及还原的命令操作
JS judge whether the array key name exists
揭秘!付费会员制下的那些小心机!
出逃与进军,临期食品的「双面江湖」
【日常训练】535. TinyURL 的加密与解密
ChainSafe跨链桥部署教程
2. how to install MySQL database in Galaxy Kirin offline mode





![[笔记]再笔记--边干边学Verilog HDL –008](/img/7f/0ca73446247455ac4d8f9667083a87.png)


