Hướng dẫn install mysql 5.6 centos 6 - cài đặt mysql 5.6 centos 6

  • Cài đặt Máy chủ MySQL 5.6 trên Centos và Redhat & NBSP;
    • Cài đặt WGET
    • Tải xuống và cài đặt repo MySQL-Community
    • Cài đặt máy chủ MySQL 5.6 bằng lệnh yum
    • mysql_secure_installation

Xin chào các bạn, trong bài viết này, tôi sẽ giải thích làm thế nào chúng ta có thể cài đặt máy chủ MySQL 5.6 trong Centos và Redhat 6/7/8 bằng lệnh yum.

Yêu cầu hệ thống :

  • Máy chủ: Centos Release 6.7 [Final] : CentOS release 6.7 [Final]
  • Kiến trúc: i686 i386 gnu/linux : i686 i386 GNU/Linux

Bạn cũng có thể thích bài viết này:

  • Làm thế nào để cài đặt Máy chủ MySQL 8.0 trên Centos và Redhat?
  • Làm thế nào để thiết lập bản sao Master và Slave của MySQL bằng RSYNC?

Thực hiện theo các bước dưới đây để cài đặt Máy chủ MySQL 5.6 bằng lệnh YUM.

Đăng nhập vào máy chủ bằng giao thức SSH. Tải xuống và cài đặt repo MySQL-Community bằng lệnh bên dưới.

# ssh [email protected]_ip_and _hostname
# mkdir /root/dowload/
# cd /root/download/

Cài đặt WGET

Trước hết, lệnh WGET cài đặt trên máy của bạn nếu nó không được cài đặt theo mặc định. Thực hiện theo lệnh này dưới đây để cài đặt WGET.

# yum install wget

Bạn sẽ lấy lại một số đầu ra như dưới đây nếu bạn đã cài đặt gói WGET.

Loaded plugins: fastestmirror
Setting up Install Process
\Loading mirror speeds from cached hostfile
* base: mirror.nbrc.ac.in
* epel: ftp.riken.jp
* extras: mirror.nbrc.ac.in
* updates: mirror.nbrc.ac.in
Package wget-1.12-8.el6.i686 already installed and latest version
Nothing to do

Tải xuống và cài đặt repo MySQL-Community

Cài đặt máy chủ MySQL 5.6 bằng lệnh yum

# wget //repo.mysql.com/mysql-community-release-el6-5.noarch.rpm

--2016-11-25 06:30:03-- //repo.mysql.com/mysql-community-release-el6-5.noarch.rpm
Resolving repo.mysql.com... 104.108.196.141
Connecting to repo.mysql.com|104.108.196.141|:80... connected.

Cài đặt máy chủ MySQL 5.6 bằng lệnh yum

Xin chào các bạn, trong bài viết này, tôi sẽ giải thích làm thế nào chúng ta có thể cài đặt máy chủ MySQL 5.6 trong Centos và Redhat 6/7/8 bằng lệnh yum.

#yum install mysql-server

Loaded plugins: fastestmirror
Setting up Install Process
Loading mirror speeds from cached hostfile
* base: mirror.nbrc.ac.in
* epel: epel.mirror.net.in
* extras: mirror.nbrc.ac.in
* remi: mirrors.thzhost.com
* remi-php56: mirrors.thzhost.com
* remi-safe: mirrors.thzhost.com
* updates: mirror.nbrc.ac.in
ajenti | 2.5 kB 00:00
vz-base | 951 B 00:00
vz-updates | 951 B 00:00
Package mysql-server is obsoleted by mysql-community-server, trying to install mysql-community-server-5.6.34-2.el6.i686 instead
Resolving Dependencies
--> Running transaction check
---> Package mysql-community-server.i686 0:5.6.34-2.el6 will be installed
................................
....................
Install 5 Package[s]
Total size: 73 M
Installed size: 299 M
Is this ok [y/N]: y
Downloading Packages:
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Warning: RPMDB altered outside of yum.
Installing : mysql-community-common-5.6.34-2.el6.i686 1/5
Installing : mysql-community-libs-5.6.34-2.el6.i686 2/5
Installing : mysql-community-client-5.6.34-2.el6.i686 3/5
Installing : numactl-2.0.9-2.el6.i686 4/5
Installing : mysql-community-server-5.6.34-2.el6.i686 5/5
Verifying : mysql-community-common-5.6.34-2.el6.i686 1/5
Verifying : mysql-community-client-5.6.34-2.el6.i686 2/5
Verifying : numactl-2.0.9-2.el6.i686 3/5
Verifying : mysql-community-libs-5.6.34-2.el6.i686 4/5
Verifying : mysql-community-server-5.6.34-2.el6.i686 5/5
Installed:
mysql-community-server.i686 0:5.6.34-2.el6
Dependency Installed:
mysql-community-client.i686 0:5.6.34-2.el6 mysql-community-common.i686 0:5.6.34-2.el6 mysql-community-libs.i686 0:5.6.34-2.el6
numactl.i686 0:2.0.9-2.el6
Complete!

Yêu cầu hệ thống :

#service mysqld start

Máy chủ: Centos Release 6.7 [Final]

#/etc/init.d/ mysqld start

Kiến trúc: i686 i386 gnu/linux We have installed MySQL server with blank root password. We will need to reset root password using “mysql_secure_installation” follow below instructions to reset password.

mysql_secure_installation

Bạn cũng có thể thích bài viết này:

# mysql_secure_installation

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MySQL to secure it, we'll need the current
password for the root user. If you've just installed MySQL, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.
Enter current password for root [enter for none]: 
OK, successfully used password, moving on...
Setting the root password ensures that nobody can log into the MySQL
root user without the proper authorisation.
Set root password? [Y/n] 
New password:*****
Re-enter new password:*****
Password updated successfully!
Reloading privilege tables..
... Success!
By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.
Remove anonymous users? [Y/n] 
... Success!
Normally, root should only be allowed to connect from 'localhost'. This
ensures that someone cannot guess at the root password from the network.
Disallow root login remotely? [Y/n] < Type “ Y “ if you want to disable root remote loging for security purpose>
... Success!
By default, MySQL comes with a database named 'test' that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.
Remove test database and access to it? [Y/n] < Type “Y” >
... Success!
Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.
Reload privilege tables now? [Y/n]
... skipping.
All done! If you've completed all of the above steps, your MySQL
installation should now be secure.
Thanks for using MySQL!
Cleaning up...

Làm thế nào để cài đặt Máy chủ MySQL 8.0 trên Centos và Redhat?

#mysql -uroot -p

Enter password:*****

Welcome to the MySQL monitor. Commands end with ; or \g.

Your MySQL connection id is 14

Server version: 5.6.34 MySQL Community Server [GPL]

Copyright [c] 2000, 2016, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its

affiliates. Other names may be trademarks of their respective

owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>

Làm thế nào để thiết lập bản sao Master và Slave của MySQL bằng RSYNC?

Thực hiện theo các bước dưới đây để cài đặt Máy chủ MySQL 5.6 bằng lệnh YUM.

Đăng nhập vào máy chủ bằng giao thức SSH. Tải xuống và cài đặt repo MySQL-Community bằng lệnh bên dưới.www.looklinux.com. To become an author at LookLinux Submit Article. Stay connected to Facebook.

Trước hết, lệnh WGET cài đặt trên máy của bạn nếu nó không được cài đặt theo mặc định. Thực hiện theo lệnh này dưới đây để cài đặt WGET.

Bạn sẽ lấy lại một số đầu ra như dưới đây nếu bạn đã cài đặt gói WGET.

Bây giờ tải xuống và cài đặt repo mysql-community

Bài Viết Liên Quan

Chủ Đề