It seems that the mysql-sever file for installing MySQL normally is not available in the yum source of CentOS 7. You need to download it from the official website. # wget http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm # rpm -ivh mysql-community-release-el7-5.noarch.rpm # yum install mysql-community-server After successful installation, restart the mysql service # service mysqld restart When you first install MySQL, the root account has no password. The method statement for setting the password ends with a semicolon #mysql -uroot mysql> set password for 'root'@'localhost' = password('mypasswd'); Create a database and specify utf-8 encoding mysql> CREATE DATABASE xxxx DEFAULT CHARSET utf8 COLLATE utf8_general_ci Importing a database mysql>use database -- Then use the source command, followed by the script file (such as the .sql file used here) mysql>source dbname.sql The above is the tutorial on installing MySQL on Alibaba Cloud Centos 7.5. I hope it will be helpful to you. If you have any questions, please leave me a message and I 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:
|
<<: MySQL 5.7.18 installation tutorial under Windows
>>: Example of using JSX to build component Parser development
Today I will introduce a very simple trick to con...
Background: Linux server file upload and download...
Scenario The company project is deployed in Docke...
Ubuntu install jdk: [link] Install Eclipse on Ubu...
Table of contents Introduction Traditional transi...
Table of contents 1. Definition and Use 1.1 Defin...
A hyperlink URL in Vm needs to be concatenated wit...
1. Install the built-in Linux subsystem of win10 ...
Table of contents history pushState() Method push...
This article introduces the method of implementin...
1. Create a table using HTML tags: Copy code The ...
Visual Studio Code is a powerful text editor prod...
Table of contents View Disk Usage Disk Cleanup (D...
Table of contents In the React official website, ...
According to null-values, the value of null in My...