In the process of building an LNMP environment, installing the database service is an essential step. MySQL is one of the most popular open source databases and is widely used. This article will introduce how to install MySQL on Ubuntu Server.
- Add MySQL source
First, we need to add the MySQL official source. Enter the following command in the terminal:
sudo apt-get install software-properties-common sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A4A9406876FCBD3C456770C88C718D3B5072E1F5 sudo add-apt-repository 'deb [arch=amd64] http://mirror.nodesdirect.com/mariadb/repo/10.5/ubuntu focal main'
The above command will first install software-properties-common
, then add the signing key of the official source, and finally add the MySQL source.
- Install MySQL server
Next, we can install the MySQL server directly through apt-get
:
sudo apt-get update sudo apt-get install mysql-server
In the installation During the process, you will be prompted to set the password for the MySQL root account. Enter your password twice to complete the setup.
- Configuring MySQL server
After the installation is complete, we need to perform some necessary configurations.
3.1 Modify bind-address
In order to be able to connect to the MySQL server through the network, we need to modify the bind-address of MySQL to the local IP address. Open the MySQL configuration file using the following command:
sudo nano /etc/mysql/mysql.conf.d/mysqld.cnf
Add the following line in the [mysqld] section of the file:
bind-address = 本机ip地址
Save and close the file.
3.2 Configure remote access
If you want to access the MySQL server remotely, you need to create a new MySQL user on the server and grant it remote access permissions.
First, log in to MySQL as root:
sudo mysql -u root -p
Then, create a new user:
CREATE USER '用户名'@'%' IDENTIFIED BY '密码';
Among them, username
and password
are the username and password you set respectively.
Next, grant the user all permissions on all databases:
GRANT ALL PRIVILEGES ON *.* TO '用户名'@'%';
Finally, refresh the permission table so that the new user can take effect:
FLUSH PRIVILEGES;
- Start the MySQL server
After completing the configuration, we can start the MySQL server:
sudo service mysql start
Test whether the server can connect normally:
mysql -u 用户名 -p
After entering the password, if it can succeed Connecting to the database means that the MySQL server is running normally.
Summary
Through the above steps, we have successfully installed the MySQL server on Ubuntu Server and made the necessary configurations.
In actual production environments, in order to ensure the security of the database, we usually perform more detailed configuration and management. However, the steps described in this article are enough to get you started using MySQL and accessing the database over the network.
The above is the detailed content of lnmp install mysql. 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.

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

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.


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

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version
God-level code editing software (SublimeText3)

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

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),
