This article shares the simple process of installing mysql5.6 with linux yum for your reference. The specific content is as follows 1. For a newly opened cloud server, you need to check whether the system has MySQL installed. # yum list installed | grep mysql 2. If you find that the system comes with MySQL, do this decisively # yum -y remove mysql-libs.x86_64 3. Execute it in the directory where you store the file. Here is an explanation. Since the MySQL yum source server is abroad, the download speed will be slow. Fortunately, mysql5.6 is only 79M, while mysql5.7 is 182M, so this is why I don't want to install mysql5.7 # wget http://repo.mysql.com/mysql-community-release-el6-5.noarch.rpm 4. Then execute this sentence. Explain that this rpm is not the installation file of mysql, but two yum source files. After execution, mysql-community-source.repo and mysql-community.repo are added in the directory /etc/yum.repos.d/ # rpm -ivh mysql-community-release-el6-5.noarch.rpm 5. At this time, you can use the yum repolist mysql command to check whether there is already a mysql installable file #yum repolist all | grep mysql 6. Install mysql server command (yes all the way): # yum install mysql-community-server 7. After successful installation # service mysqld start 8. Since the password of the mysql root user is empty by default when mysql is just installed, we need to log in as the mysql root user in time (press the Enter key for the first time, no need to enter the password) and change the password # mysql -u root # use mysql; # update user set password=PASSWORD("Enter the root user password here") where User='root'; # flush privileges; 9. Check whether MySQL starts automatically and set the command to start automatically # chkconfig --list | grep mysqld # chkconfig mysqld on 10.MySQL security settings (the system will ask you a few questions along the way. If you don’t understand, copy them and translate them. Basically, answer yes all the way): #mysql_secure_installation 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:
|
<<: Develop a vue component that encapsulates iframe
>>: Docker-compose one-click deployment of gitlab Chinese version method steps
Table of contents 1. The relationship between red...
Nginx cross-domain configuration does not take ef...
In the path of using nginx as a reverse proxy tom...
Rownum is a unique way of writing in Oracle. In O...
After solving the form auto-fill problem discussed...
Table of contents Two major categories of functio...
Table of contents 1. Dep 2. Understand obverser 3...
Table of contents Overview Single file components...
Syntax format: row_number() over(partition by gro...
First, download a series of things from the Alipa...
Preface In many cases, we will use virtual machin...
1Basic steps of echarts Four Steps 1 Find the DOM...
<META http-equiv="Page-Enter" CONTENT...
Introduction MySQL achieves high availability of ...
Table of contents 1. Installation 2. Use Echarts ...