# yum install mariadb-server
Credit : http://blog.dechathon.com/mariadb-iptables/
Step 1 : ติดตั้ง MariaDB
# sudo yum install mariadb-server mariadb
Step 2 : หลังจากติดตั้งเสร็จก็ start ให้ MariaDB ทำงาน
# sudo systemctl start mariadb.service // สั่งให้ mariadb ทำงาน
# sudo systemctl stop mariadb.service // สั่งให้ mariadb หยุดทำงาน
# sudo systemctl restart mariadb.service // สั่งให้ mariadb ทำงานใหม่
คำสั่งอื่นๆ
# sudo systemctl is-active mariadb.service // เช็คสถานะว่า mariadb ทำงานอยู่หรือไม่
หรือ systemctl status mariadb
# sudo systemctl enable mariadb.service // คำสั่งให้ mariadb ทำงาน
Step 3 : กำหนดรหัสผ่านให้กับ MariaDB โดยใช้คำสั่ง
# sudo /usr/bin/mysql_secure_installation
จะแสดงข้อความ Enter current password for root (enter for none): (ถ้าไม่มีก็ Enter ไป)
Set root password? [Y/n] พิมพ์ Y จากนั้นจะให้กำหนดรหัสผ่านใหม่
New password: ใส่รหัสผ่านใหม่
Re-enter new password:ใส่รหัสผ่านใหม่ซ้ำอีกครั้ง
ระบบจะแสดงคำสั่งต่างๆ ให้ตอบก็เลือกตอบ Y ทั้งหมด เช่น
Remove anonymous users? [Y/n] Y
Disallow root login remotely? [Y/n] Y
Remove test database and access to it? [Y/n] Y
Reload privilege tables now? [Y/n] Y
เมื่อดำเนินการเสร็จสิ้นจะแสดงข้อความว่า
installation should now be secure.
Thanks for using MariaDB!
สามารถเข้าใช้งานได้เลยครับ
# mysql -u root -p
# "YOUR PASSWORD"