Detailed explanation of how to install MySQL on Alibaba Cloud

Detailed explanation of how to install MySQL on Alibaba Cloud

As a lightweight open source database, MySQL is widely used in enterprise-level applications. I have used mssql, oracle, postgresql, mysql before. There is currently no Oracle on Alibaba Cloud. From my personal experience, I would choose MySQL first when creating a project.

Uninstall the existing mysql

The mysql database may already exist in the system, so we need to uninstall it before installation.

# rpm -qa|grep -i mysql

This command will display the installed MySQL software, and then you can uninstall the software one by one using the following commands. Note: This uninstall is not complete, but it is enough here.

# yum remove 'software name'

Today I will briefly introduce the steps to install MySQL on Alibaba Cloud. My personal operating system is CentOs of Alibaba Cloud ECS. First, download and install mysql-server 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 mysql:

service mysqld restart

There is no password for the first installation. We need to set a password for root. First, switch to the mysql command:

mysql -u root

Set password:

mysql>set password for 'root'@'localhost' =password('password');

Remote connection settings, by default, do not allow all IPs to allow remote connections:

mysql> grant all privileges on *.* to root@'%' identified by 'password';

The latest Alibaba Cloud intranet inbound direction does not need to be set up, and the default MySQL port 3306 is already allowed.

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:
  • Detailed tutorial on installing mysql8.0.22 on Alibaba Cloud centos7
  • Detailed tutorial on installing MySQL database on Alibaba Cloud Server
  • How to install MySQL 8.0.13 in Alibaba Cloud CentOS 7
  • Tutorial on installing MYSQL8.0 on Alibaba Cloud ESC
  • Alibaba Cloud ECS cloud server (linux system) cannot connect remotely after installing MySQL (pitfall)
  • Tutorial on installing MySQL on Alibaba Cloud Centos 7.5
  • How to solve the 2002 error when installing MySQL database on Alibaba Cloud
  • Detailed explanation on how to install MySQL database on Alibaba Cloud Server

<<:  Script example for starting and stopping spring boot projects in Linux

>>:  Vue implements left and right sliding effect example code

Recommend

The homepage design best reflects the level of the web designer

In the many projects I have worked on, there is b...

Vue realizes picture switching effect

This article example shares the specific code of ...

How to Find the Execution Time of a Command or Process in Linux

On Unix-like systems, you may know when a command...

Five delay methods for MySQL time blind injection

Five delay methods for MySQL time blind injection...

How to install golang under linux

Go is an open source programming language that ma...

HTML input file control limits the type of uploaded files

Add an input file HTML control to the web page: &...

How to set up Referer in Nginx to prevent image theft

If the server's images are hotlinked by other...

Solution to 404 error when downloading apk file from IIS server

Recently, when using IIS as a server, the apk fil...

MySQL paging query optimization techniques

In applications with paging queries, queries that...

Two implementations of front-end routing from vue-router

Table of contents Mode Parameters HashHistory Has...

Tutorial on using $attrs and $listeners in Vue

Table of contents introduce Example Summarize int...

Use CSS's clip-path property to display irregular graphics

clip-path CSS properties use clipping to create t...