On the Linux operating system, the MySQL database is a very popular relational database. There may be many ways to install a MySQL database, one of which is to install MySQL through an RPM package. RPM is a software package manager used to install, upgrade and remove software packages on the Red Hat base operating system. This article will introduce how to install MySQL on a Linux system using RPM packages.
- Download MySQL RPM package
First, we need to download the RPM package for our operating system from the MySQL official website. It is important to choose the right RPM package, especially one that is compatible with the operating system and version. Now we assume that we are installing the CentOS 7 operating system, so we need to select the RPM package for CentOS 7.
- Install the MySQL RPM package
After downloading the RPM package, we can use the following command to install it:
sudo rpm -ivh <path-to-rpm-package></path-to-rpm-package>
where<path- to-rpm-package></path->
is the path to the RPM package we downloaded. For example, if we download the RPM package into the ~/Downloads
folder, then we will install it using the following command:
sudo rpm -ivh ~/Downloads/mysql57-community-release-el7-9.noarch.rpm
During the installation process, we will see some output, Such as:
Preparing... ################################# [100%] Updating / installing... 1:mysql57-community-release-el7-9 ################################# [100%]
This means that we have successfully installed the MySQL RPM package.
- Install MySQL server
The MySQL RPM package contains a package named mysql-community-server
, which contains the MySQL server all content. Therefore, we can use the following command to install the MySQL server:
sudo yum install mysql-community-server
- Start the MySQL service
After installing the MySQL server, we need to use the following command to start the MySQL service:
sudo systemctl start mysqld
At this point, the MySQL server will be up and running.
- Verify MySQL Server
After installing and starting the MySQL server, we need to verify that it is available. We can use the following command to check whether the MySQL server has been installed correctly:
sudo systemctl status mysqld
This will output the status information of the MySQL server. If the MySQL server is properly installed and running, we should be able to see the following output:
● mysqld.service - MySQL Community Server Loaded: loaded (/usr/lib/systemd/system/mysqld.service; enabled; vendor preset: disabled) Active: active (running) since Fri 2021-05-07 14:43:49 CST; 3s ago Process: 3707 ExecStartPre=/usr/bin/mysqld_pre_systemd (code=exited, status=0/SUCCESS) Main PID: 3709 (mysqld) Status: "Server is operational" CGroup: /system.slice/mysqld.service └─3709 /usr/sbin/mysqld --daemonize --pid-file=/var/run/mysqld/mysqld.pid
This indicates that the MySQL server is running and ready for use.
- Set the MySQL root password
After installing the MySQL server, we need to set the password of the MySQL root user. We can use the following command to set the password:
sudo mysql_secure_installation
This command will start the MySQL Secure Installation Wizard, which will prompt us to enter a new password. After entering the password, we need to follow the prompts to make some other settings, such as disabling anonymous access and deleting the test database.
- Login to the MySQL database
After installing and setting up the MySQL server, we can log in to the MySQL database using the following command:
mysql -u root -p
This command will prompt us to enter The password of the MySQL root user. After entering the password, we will enter the MySQL Shell where we can execute MySQL commands and queries.
Now we have successfully installed the MySQL database on the Linux system using the RPM package. You can also use RPM packages to install MySQL databases on other operating systems such as Ubuntu, Debian, and Fedora. Before installing MySQL, make sure to select the correct RPM package for the operating system you are using, and make sure to follow the appropriate installation, startup, and setup guidelines.
The above is the detailed content of How to install MySQL on Linux system using RPM package. For more information, please follow other related articles on the PHP Chinese website!

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

The article discusses dropping tables in MySQL using the DROP TABLE statement, emphasizing precautions and risks. It highlights that the action is irreversible without backups, detailing recovery methods and potential production environment hazards.

Article discusses using foreign keys to represent relationships in databases, focusing on best practices, data integrity, and common pitfalls to avoid.

The article discusses creating indexes on JSON columns in various databases like PostgreSQL, MySQL, and MongoDB to enhance query performance. It explains the syntax and benefits of indexing specific JSON paths, and lists supported database systems.

Article discusses securing MySQL against SQL injection and brute-force attacks using prepared statements, input validation, and strong password policies.(159 characters)


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version
Useful JavaScript development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
