Centos6.9 installation Mysql5.7.18 step record

Centos6.9 installation Mysql5.7.18 step record

Installation sequence rpm -ivh

mysql-community-common-5.7.18-1.el7.x86_64.rpm
mysql-community-libs-5.7.18-1.el7.x86_64.rpm (depends on common)
mysql-community-client-5.7.18-1.el7.x86_64.rpm (depends on libs)
mysql-community-server-5.7.18-1.el7.x86_64.rpm (depends on common, client)
mysql-community-devel-5.7.18-1.el7.x86_64.rpm (MySQL header files and library files)
yum install gcc gcc-c++ ncurses-devel perl 
yum install cmake -y
groupadd mysql
useradd -r -g mysql mysql
mkdir -p /usr/local/mysql
mkdir -p /data/mysqldb
tar -zxvf mysql-boost-5.7.18.tar.gz and then install vi /etc/my.cnf
datadir=/data/mysqldb/
socket=/data/mysqldb/mysql.sock
explicit_defaults_for_timestamp=true
mysqld --initialize 
ln –s /data/mysql/mysql.sock /var/lib/mysql/
chown mysql:mysql /var/lib/mysql -R
chmod -R 777 /data/mysqldb
service mysqld stop 
mysqld_safe --skip-grant-tables &
mysql -uroot -p
>use mysql;
> update user set authentication_string=PASSWORD("password") where user="root";
 update user set host='%' where user="root";
FLUSH PRIVILEGES; 
service mysqld restart
mysql -uroot -ppassword
SET PASSWORD = PASSWORD('password');

The above is the step record of installing MySQL 5.7.18 on Centos 6.9 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:
  • Detailed tutorial on installing MySQL 5.7.20 on RedHat 6.5/CentOS 6.5
  • Solution to the initialization error when installing mysql5.7 from rpm package in centos6.5
  • CentOS 6.4 MySQL 5.7.18 installation and configuration method graphic tutorial
  • Tutorial on installing and configuring MySql5.7 in Alibaba Cloud ECS centos6.8
  • CentOS6.8 uses cmake to install MySQL5.7.18
  • Detailed tutorial on installing MySQL 5.7.18 under CentOS 6.5
  • Deploy MySQL 5.7.17 binary installation and multi-instance configuration on CentOS 6.5
  • Tutorial on installing MySQL 5.7.28 on CentOS 6.2 (mysql notes)

<<:  A brief analysis of the configuration items of the Angular CLI release path

>>:  Nexus uses API to operate

Recommend

A solution to the abnormal exit of Tomcat caused by semaphore

I'm playing with big data recently. A friend ...

Advantages and disadvantages of Table layout and why it is not recommended

Disadvantages of Tables 1. Table takes up more byt...

Docker builds kubectl image implementation steps

If the program service is deployed using k8s inte...

Detailed explanation of the platform bus of Linux driver

Table of contents 1. Introduction to platform bus...

JavaScript adds prototype method implementation for built-in objects

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

mysql5.7.18.zip Installation-free version configuration tutorial (windows)

This is the installation tutorial of mysql5.7.18....

Vue implements DingTalk's attendance calendar

This article shares the specific code of Vue to i...

Detailed tutorial on building Gitlab server on CentOS8.1

There is no need to say much about the difference...

MySQL deep paging (how to quickly paginate tens of millions of data)

Table of contents Preface Case optimization summa...

Use CSS variables to achieve cool and amazing floating effects

Recently, I found a fun hover animation from the ...

Axios secondary encapsulation example Demo in the project

1. Why do packaging? Facilitates overall code cal...

How to implement Nginx reverse proxy for multiple servers

Nginx reverse proxy multiple servers, which means...

CSS World--Code Practice: Image Alt Information Presentation

Using the <img> element with the default sr...

Centos7.3 How to install and deploy Nginx and configure https

Installation Environment 1. gcc installation To i...