Detailed steps for installing MySQL using cluster rpm

Detailed steps for installing MySQL using cluster rpm

Install MySQL database

a) Download the MySQL source installation package: wget http://dev.mysql.com/get/mysql57-community-release-el7-8.noarch.rpm

b) Install MySQL source: yum localinstall mysql57-community-release-el7-8.noarch.rpm

If complete! appears at the end, it means that the MySQL source installation is complete.

c) Check whether the installation is complete: yum repolist enabled | grep "mysql.*-community.*"

d) Install mysql: yum install mysql-community-server

If Complete! appears at the end, the MySQL installation is complete.

e) Set to start the mysql service: systemctl enable mysqld

f) Check the installed MySQL version: rpm -aq | grep -i mysql

g) Start the MySQL service: systemctl restart mysqld

h) View the initial MySQL password: grep 'A temporary password' /var/log/mysqld.log

i) Change MySQL password: mysqladmin -u root -p 'old password' password 'new password'

There is a problem with changing the password here and the change fails because the password is too simple. There are two solutions:

Method 1: Make your password more complex (this is the most direct method)

Method 2: Turn off MySQL password strength verification (validate_password)

Edit the configuration file: vim /etc/my.cnf, add the line validate_password=off

After editing, restart the mysql service: systemctl restart mysqld

If you change the database port

vim /etc/my.cnf add line prot=3306

After editing, restart the mysql service: systemctl restart mysqld

j) Set up mysql to be accessible remotely:

Log in to MySQL: mysql -uroot -p password

Add a user to grant access rights: grant all privileges on permission group. Permission to 'root'@'ip address' identified by 'password' with grant option; //You can change the ip to %%, which means to enable all

Refresh privileges: flush privileges;

The above are all the relevant knowledge points introduced this time. Thank you for your learning and support for 123WORDPRESS.COM.

You may also be interested in:
  • MySQL high availability cluster deployment and failover implementation
  • Detailed explanation of MySQL cluster: one master and multiple slaves architecture implementation
  • Detailed explanation of MySQL cluster construction
  • Build a high-availability MySQL cluster with dual VIP

<<:  Nginx prohibits direct access via IP and redirects to a custom 500 page

>>:  Solve the problem of using swiper plug-in in vue

Recommend

MySQL 5.7 generated column usage example analysis

This article uses examples to illustrate the usag...

Linux checkup, understand your Linux status (network IO, disk, CPU, memory)

Table of contents 1. Core commands 2. Common comm...

Summary of MySQL Undo Log and Redo Log

Table of contents Undo Log Undo Log Generation an...

Native JavaScript carousel implementation method

This article shares the implementation method of ...

Examples of implementing progress bars and order progress bars using CSS

The preparation for the final exams in the past h...

How to prevent Vue from flashing in small projects

Summary HTML: element plus v-cloak CSS: [v-cloak]...

Some common advanced SQL statements in MySQL

MySQL Advanced SQL Statements use kgc; create tab...

Vue uniapp realizes the segmenter effect

This article shares the specific code of vue unia...

Ubuntu 20.04 Chinese input method installation steps

This article installs Google Input Method. In fac...

HTML adaptive table method

<body style="scroll:no"> <tabl...

A preliminary understanding of CSS custom properties

Today, CSS preprocessors are the standard for web...

Learn asynchronous programming in nodejs in one article

Table of Contents Introduction Synchronous Asynch...

JavaScript Dom Object Operations

Table of contents 1. Core 1. Get the Dom node 2. ...

Apache Bench stress testing tool implementation principle and usage analysis

1: Throughput (Requests per second) A quantitativ...