How to install MySQL via SSH on a CentOS VPS

How to install MySQL via SSH on a CentOS VPS

Type yum install mysql-server

Press Y to continue

Installation is complete, set MySQL to start at boot, enter chkconfig --levels 235 mysqld on

Then start tomcat and enter service mysqld start

After the startup is complete, log in to MYsql and set the password

入set password for 'root'@'localhost' = password('12345678'); to set the password

At this point, mysql is installed! Then create a database, first use show databases; to view the database

Then use create database 數據庫名; to create the database,

Use grant all privileges on 數據庫名.* to root@localhost identified by ' 密碼'; assign users to the newly created database

The super user root is assigned here, and the red area in the figure below is the database name.

Summarize

The above is the graphic method of installing MySQL through SSH on CentOS VPS 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:
  • How to use ssh tunnel to connect to mysql server
  • Solution to slow intranet ssh/mysql login
  • Basic steps to use Mysql SSH tunnel connection

<<:  Basic commands for MySQL database operations

>>:  Calendar effect based on jQuery

Recommend

How to dynamically modify container port mapping in Docker

Preface: Docker port mapping is often done by map...

Detailed explanation of JavaScript's built-in Date object

Table of contents Date Object Creating a Date Obj...

Case study of dynamic data binding of this.$set in Vue

I feel that the explanation of this.$set on the I...

Detailed explanation of destructuring assignment syntax in Javascript

Preface The "destructuring assignment syntax...

MySQL configuration SSL master-slave replication

MySQL5.6 How to create SSL files Official documen...

Implementing CommonJS modularity in browsers without compilation/server

Table of contents introduction 1. What is one-cli...

dl, dt, dd list label examples

The dd and dt tags are used for lists. We usually...

Build a WebRTC video chat in 5 minutes

In the previous article, I introduced the detaile...

Detailed introduction to JS basic concepts

Table of contents 1. Characteristics of JS 1.1 Mu...

Vue3 implements CSS infinite seamless scrolling effect

This article example shares the specific code of ...

Html easily implements rounded rectangle

Question: How to achieve a rounded rectangle usin...

H tags should be used reasonably in web page production

HTML tags have special tags to handle the title of...