MySQL 5.6.33 installation and configuration tutorial under Linux

MySQL 5.6.33 installation and configuration tutorial under Linux

This tutorial shares the installation and configuration methods of MySQL 5.6.33 under Linux for your reference. The specific contents are as follows

1. Download

Download address: http://dev.mysql.com/downloads/mysql/5.6.html#downloads

Download version: I chose 5.6.33 here, general version, 64-bit under Linux

You can also directly copy the 64-bit download address and download it through the command:

Copy the code as follows:
wget http://dev.mysql.com/get/Downloads/MySQL-5.6/mysql-5.6.33-linux-glibc2.5-x86_64.tar.gz

2. Decompression

#Unzip tar -zxvf mysql-5.6.33-linux-glibc2.5-x86_64.tar.gz
#Copy the unzipped mysql directory cp -r mysql-5.6.33-linux-glibc2.5-x86_64 /usr/local/mysql

3. Add user groups and users

#Add user group groupadd mysql
#Add user mysql to user group mysql
useradd -g mysql mysql

4. Installation

cd /usr/local/mysql/<br>mkdir ./data/mysql
chown -R mysql:mysql ./
./scripts/mysql_install_db --user=mysql --datadir=/usr/local/mysql/data/mysql
cp support-files/mysql.server /etc/init.d/mysqld
chmod 755 /etc/init.d/mysqld
cp support-files/my-default.cnf /etc/my.cnf
 
#Modify the startup script vi /etc/init.d/mysqld
 
#Modifications:
basedir=/usr/local/mysql/
datadir=/usr/local/mysql/data/mysql
 
#Start the service service mysqld start
 
#Test connection ./mysql/bin/mysql -uroot
 
#Add environment variables and edit /etc/profile so that you can use mysql commands anywhere export PATH=$PATH:/usr/local/mysql//bin<br>source /etc/profile
 
 
#Start mysql
service mysqld start
#Shut down mysql
service mysqld stop
#View the running status service mysqld status

5. Errors

5.1 When sqlyog connects, error 1130 is reported because the user permissions for the remote connection are not given

Solution 1: Change the 'host' entry in the 'user' table of the 'mysql' database from 'localhost' to '%'.

use mysql;
select 'host' from user where user='root'; 
update user set host = '%' where user = 'root';
flush privileges;

Solution 2: Direct authorization

Copy the code as follows:
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'youpassword' WITH GRANT OPTION;

5.2 Some errors during installation

-bash: ./scripts/mysql_install_db: /usr/bin/perl: bad interpreter: no such file or directory

Solution: yum -y install perl perl-devel

Installing MySQL system tables..../bin/mysqld: error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory
Solution: yum -y install libaio-devel

6. Others

6.1 Configure environment variables

vi + /etc/profile

export PATH=....:/usr/local/mysql/bin

Wonderful topic sharing:

MySQL different versions installation tutorial

MySQL 5.6 installation tutorials for various versions

MySQL 5.7 installation tutorials for various versions

mysql8.0 installation tutorials for various versions

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Notes on compiling and installing MySQL 5.6 in Linux environment
  • MySQL 5.6.27 Installation Tutorial under Linux
  • MYSQL5.6.33 database master/slave (Master/Slave) synchronization installation and configuration details (Master-Linux Slave-windows7)
  • Linux CentOS6.5 yum install mysql5.6
  • Detailed explanation of Lamp environment construction Linux CentOS6.5 compile and install mysql5.6
  • How to change the character set encoding to UTF8 in MySQL 5.5/5.6 under Linux
  • MySQL 5.6.28 installation and configuration tutorial under Linux (Ubuntu)
  • Linux installation MySQL5.6.24 usage instructions
  • Tutorial on installing mysql5.6.20 from source code under linux
  • Tutorial on installing MySQL 5.6.20 using Linux binary universal package
  • Install mysql-5.6.12-linux-glibc2.5-x86_64.tar.gz under Linux
  • Detailed version of the graphic tutorial for installing MySQL 5.6.17 under Linux
  • MySQL 5.6.17 installation graphic tutorial under Linux
  • How to install MySQL 5.6 from source code under SUSE Linux
  • Installation and configuration process of linux mysql5.6 version
  • Graphic tutorial for installing mysql-5.6.4 under Linux
  • Install MySQL database 5.6 source code under Linux and change the login user password

<<:  How to lock a virtual console session on Linux

>>:  How to achieve 3D dynamic text effect with three.js

Recommend

Detailed explanation of how to easily switch CSS themes

I recently added a very simple color scheme (them...

JavaScript realizes magnifying glass special effects

The effect to be achieved: When the mouse is plac...

Let's deeply understand the event object in js

We know that the commonly used events in JS are: ...

Several ways to schedule backup of MySQL database (comprehensive)

Table of contents 1. mysqldump command to back up...

How to check if the firewall is turned off in Linux

1. Service method Check the firewall status: [roo...

MySQL high availability solution MMM (MySQL multi-master replication manager)

1. Introduction to MMM: MMM stands for Multi-Mast...

Based on the special characters in the URL escape encoding

Table of contents Special characters in URLs URL ...

Detailed explanation of the use of Teleport in Vue3

Table of contents Purpose of Teleport How Telepor...

Introduction and use of js observer mode

Table of contents I. Definition 2. Usage scenario...

Tomcat8 uses cronolog to split Catalina.Out logs

background If the catalina.out log file generated...

How to use video.js in vue to play m3u8 format videos

Table of contents 1. Installation 2. Introducing ...

Let's talk briefly about the changes in setup in vue3.0 sfc

Table of contents Preface Standard sfc writing me...

Example of how to implement embedded table with vue+elementUI

During my internship in my senior year, I encount...