Detailed steps to install MySQL 5.6 X64 version under Linux

Detailed steps to install MySQL 5.6 X64 version under Linux

environment:

1. CentOS6.5 X64

2.mysql-5.6.34-linux-glibc2.5-x86_64.tar.gz

3. Download address: http://dev.mysql.com/downloads/mysql/

Installation Steps

1. Execute the command to decompress the file in the storage directory of the installation package

tar -zxvf mysql-5.6.34-linux-glibc2.5-x86_64.tar.gz -C /opt/

2. Delete the installation package and rename the unzipped file

rm -rf mysql-5.6.34-linux-glibc2.5-x86_64.tar.gz
mv mysql-5.6.34-linux-glibc2.5-x86_64/mysql

3. Add mysql user group and mysql user

First check whether there is a mysql user group and mysql user

groups mysql

If not, add it;

groupadd mysql
useradd -r -g mysql mysql

4. Enter the mysql directory to change permissions

chown -R mysql:mysql ./

5. Execute the local yum source to install the dependent package

yum install -y perl perl-devel libaio

6. Execute the installation script

./scripts/mysql_install_db --user=mysql

After installation, change the current directory owner to root user and the data directory owner to mysql

chown -R root:root ./
chown -R mysql:mysql data

7. Modify mysql/support-files/mysql.server

8. Start mysql

./support-files/mysql.server start

9.Change password and log in

./bin/mysqladmin -u root -h localhost.localdomain password 'root'
./bin/mysql -h127.0.0.1 -uroot -proot

The above is the detailed steps for installing MySQL5.6 X64 version under Linux introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • Summary of Linux cut command usage
  • Detailed explanation of Linux system input and output management and common functions of vim
  • Linux shell - Example of how to test file system attributes by identification
  • Various judgments of if in linux shell
  • Linux shell pushd, popd and dirs usage explanation
  • How to print various color fonts and backgrounds in the Linux shell console
  • View the dependent libraries of so or executable programs under linux
  • Detailed explanation of system input and output management in Linux
  • Explanation of building graph database neo4j in Linux environment
  • Explanation of installation and configuration of building go environment under linux

<<:  Detailed explanation of firewall rule settings and commands (whitelist settings)

>>:  Detailed explanation of the use of React list bar and shopping cart components

Recommend

Several common methods for setting anchor positioning in HTML

There are several ways I know of to set anchor pos...

How to use docker to deploy dubbo project

1. First, use springboot to build a simple dubbo ...

How to use the Linux more command in Linux common commands

more is one of our most commonly used tools. The ...

HTML Language Encyclopedia

123WORDPRESS.COM--HTML超文本标记语言速查手册<!-- --> !D...

Solution for Docker container not recognizing fonts such as Songti

Problem background: When using docker to deploy t...

Detailed steps for Linux account file control management

In the Linux system, in addition to various accou...

Solution to large line spacing (5 pixels more in IE)

Copy code The code is as follows: li {width:300px...

25 Examples of Using Circular Elements in Web Design

Today, this post lists some great examples of circ...

Solution to failure in connecting to mysql in docker

Scenario: After installing the latest version of ...

Teach you MySQL query optimization analysis tutorial step by step

Preface MySQL is a relational database with stron...

js to achieve a simple magnifying glass effect

This article shares the specific code of js to ac...

SELinux Getting Started

Back in the Kernel 2.6 era, a new security system...