linux tar installation mysql
In Linux systems, MySQL is a very common relational database management system. When installing MySQL, we can choose to install it through a tar compressed package. Next, this article will introduce in detail the process of installing MySQL through tar in Linux systems.
Step one: Download the MySQL installation package
First, we need to download the MySQL installation package from the official MySQL website. On the download page, you can choose the following MySQL version:
In this article, we chose the Community Edition 5.7 version of MySQL for installation. After selecting the corresponding version, we need to click the "Download" button to download.
Step 2: Decompress the MySQL installation package
After the download is completed, we need to decompress the MySQL compressed package. The unzipped folder contains all MySQL installation files. When decompressing, we can use the following command:
tar zxvf mysql-5.7.34-linux-glibc2.12-x86_64.tar.gz
Among them, mysql-5.7.34-linux-glibc2.12-x86_64.tar.gz is the name of the MySQL installation package we downloaded. After using this command, you can decompress the file and generate a folder named mysql-5.7.34-linux-glibc2.12-x86_64.
Step 3: Install MySQL
After decompression, we move the mysql-5.7.34-linux-glibc2.12-x86_64 folder to the directory where we want to install MySQL. After moving the folder, we need to enter the folder:
cd /usr/local cp -r /path/to/mysql-5.7.34-linux-glibc2.12-x86_64 .
After entering the mysql-5.7.34-linux-glibc2.12-x86_64 folder, we need to perform the initialization settings of MySQL. We can use the following command to initialize and configure the root user:
cd mysql-5.7.34-linux-glibc2.12-x86_64 ./bin/mysqld --initialize --user=mysql ./bin/mysql_secure_installation
In the above command, we used the mysqld command to initialize MySQL. After the initialization is completed, we need to use the mysql_secure_installation command to set the root user's password, permissions and other information.
Step 4: Start the MySQL service
Start the MySQL service through the following command:
./bin/mysqld_safe &
After starting the service, we need to use the following command to log in to MySQL:
./bin/mysql -u root -p
At this point, the system will prompt us to enter the root user password we set previously. After successfully logging in, we can happily use MySQL.
Summary:
Through the above method, we introduced in detail how to install MySQL through tar in the Linux system and perform the corresponding initialization settings and operations. It should be noted that when using MySQL, we must pay attention to the security and stability of the environment. At the same time, we must also understand as much as possible the specific operations of MySQL and its security issues.
The above is the detailed content of linux tar installation mysql. For more information, please follow other related articles on the PHP Chinese website!

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

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

Hot Topics

This article addresses MySQL's "unable to open shared library" error. The issue stems from MySQL's inability to locate necessary shared libraries (.so/.dll files). Solutions involve verifying library installation via the system's package m

This article explores optimizing MySQL memory usage in Docker. It discusses monitoring techniques (Docker stats, Performance Schema, external tools) and configuration strategies. These include Docker memory limits, swapping, and cgroups, alongside

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

This article compares installing MySQL on Linux directly versus using Podman containers, with/without phpMyAdmin. It details installation steps for each method, emphasizing Podman's advantages in isolation, portability, and reproducibility, but also

This article provides a comprehensive overview of SQLite, a self-contained, serverless relational database. It details SQLite's advantages (simplicity, portability, ease of use) and disadvantages (concurrency limitations, scalability challenges). C

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]

This guide demonstrates installing and managing multiple MySQL versions on macOS using Homebrew. It emphasizes using Homebrew to isolate installations, preventing conflicts. The article details installation, starting/stopping services, and best pra

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