当前位置:网站首页>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
边栏推荐
- 誰在抖音文玩裏趁亂打劫?
- 75.二叉搜索树额最近公共祖先
- 打新债线上开户安全吗
- JS converts seconds to "2h30min50s" format
- unittest单元测试框架
- The sales volume could not catch up with the speed of taking money. Weima went to Hong Kong for emergency rescue
- Goldfish rhca memoirs: do447 build advanced job workflow -- create workflow job template and start workflow job
- 微信推出图片大爆炸功能;苹果自研 5G 芯片或已失败;微软解决导致 Edge 停止响应的 bug|极客头条
- Redis(一)--Redis入门(1)--Redis介绍、安装与启动、常用配置
- Product axure9 (English version), repeater implements addition, deletion, query and modification of table contents (crud)
猜你喜欢
随机推荐
JS judge whether the array key name exists
The 8th "Internet +" competition - cloud native track invites you to challenge
Using protobuf to link MySQL in unrealeengine plug-in
Fastdfs
移动端测试
从CIO到顾问:IT领导者的转型之路
Notes on spintronics - zhangshufeng
Oracle11.2.0.4-Rac集群hang分析记录
Redis(一)--Redis入门(2)--Redis数据类型
Interview question 10.10 Rank of digital stream
[Nanjing University] information sharing of the first and second postgraduate entrance examinations
【️爬虫必备->Scrapy框架从黑铁到王者️】初篇——万字博文详解(建议收藏)
第02章_MySQL的数据目录
sql server备份以及还原的命令操作
2. how to install MySQL database in Galaxy Kirin offline mode
Failed to allocate graph: myriad device is not opened
Selenium的各类API方法
程序员值得收藏的几款代码截图美化工具播
AMAZING PANDAVERSE:META”无国界,来2.0新征程激活时髦属性
SQL Server Backup and restore command operations








