Summary of Problems in Installing MySQL 5.7.19 under Linux

Summary of Problems in Installing MySQL 5.7.19 under Linux

The first time I installed MySQL on my virtual machine, I encountered many problems. I wrote them down here and shared them with you.

linux centOS 6

mysql version mysql-5.7.19-linux-glibc2.12-x86_64.tar.gz

1. groupadd mysql ## Add a mysql group

2. useradd -r -g mysql mysql ## Add a user

3. Unzip the downloaded package, tar -xzvf /usr/local/mysql-5.7.13-linux-glibc2.5-x86_64.tar.gz

4. mv /usr/local/mysql-5.7.13-linux-glibc2.5-x86_64 /usr/local/mysql ##Rename

Directory after decompression:

5. mkdir /usr/local/mysql/data ## By default, there is no such folder for storing data.

6. chown -R mysql:mysql ./ ##Enter the mysql package and authorize this package to mysql

7. chgrp -R mysql:mysql ./ ##Enter the mysql package

8. bin/mysqld --initialize --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data ##Enter the mysql file name. basedir is the path of mysql, and datadir is the data package of mysql, which contains mysql's own packages, such as user

There are many tutorials online that use the mysql_install_db installation method. I also installed it this way at the beginning, but all kinds of errors and failures occurred. The mysql_install_db command is not recommended. Just follow the command above.

Here you need to record the generated temporary password, as shown above: YLi>7ecpe;YP

9. bin/mysql_ssl_rsa_setup --datadir=/usr/local/mysql/data

10. Enter mysql support-file

11. cp my-default.cnf /etc/my.cnf

I found that this version does not have my-default

Now it's time to create one ourselves (the internal code is shown in the figure): The values ​​corresponding to the two sockets (red) below must be consistent, otherwise the connection will not work after startup.

: : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : : :

12. cp mysql.server /etc/init.d/mysql

13. vim /etc/init.d/mysql ##Modify basedir=your own path Modify datadir=your own path

14. bin/mysqld_safe --user=mysql & ## Start mysql

13. ./mysql -uroot -p ##bin directory

14. Enter a temporary password

15. Change the root password of MySQL

At this time, mysql can only be accessed by local localhost

16 Modify remote access

Restart MySQL service

At this point, you can use MySQL normally locally

Testing Remote Connection

Summarize

The above is a summary of the problems of installing MySQL5.7.19 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:
  • How to install multiple mysql5.7.19 (tar.gz) files under Linux
  • MySQL 5.7.19 (tar.gz) installation graphic tutorial under Linux
  • MySQL 5.6.27 Installation Tutorial under Linux
  • Linux CentOS6.5 yum install mysql5.6
  • Problems with installing mysql and mysql.sock under linux

<<:  Tips for viewing History records and adding timestamps in Linux

>>:  Organize the common knowledge points of CocosCreator

Recommend

CSS implements Google Material Design text input box style (recommended)

Hello everyone, today I want to share with you ho...

Node.js+express message board function implementation example

Table of contents Message Board Required librarie...

How to locate MySQL slow queries

Preface I believe that everyone has had experienc...

Two ways to achieve horizontal arrangement of ul and li using CSS

Because li is a block-level element and occupies ...

Scary Halloween Linux Commands

Even though it's not Halloween, it's wort...

Detailed explanation of two points to note in vue3: setup

Table of contents In vue2 In vue3 Notes on setup ...

Detailed explanation of MySQL data rows and row overflow mechanism

1. What are the formats of lines? You can see you...

Implementation of docker-compose deployment of zk+kafka+storm cluster

Cluster Deployment Overview 172.22.12.20 172.22.1...

JavaScript adds prototype method implementation for built-in objects

The order in which objects call methods: If the m...

How to deploy gitlab using Docker-compose

Docker-compose deploys gitlab 1. Install Docker I...

Automatic failover of slave nodes in replication architecture in MySQL 8.0.23

I have been in contact with MGR for some time. Wi...

MySQL multi-instance deployment and installation guide under Linux

What is MySQL multi-instance Simply put, MySQL mu...

Analyzing ab performance test results under Apache

I have always used Loadrunner to do performance t...

How to use iostat to view Linux hard disk IO performance

TOP Observation: The percentage of CPU time occup...

Vue + OpenLayers Quick Start Tutorial

Openlayers is a modular, high-performance and fea...