Table of Contents
Preparation before installation
Supplementary instructions:
If the following prompt message appears
什么是Linux系统
Home Database Mysql Tutorial What is the process of installing mysql under linux?

What is the process of installing mysql under linux?

Jun 02, 2023 pm 10:15 PM
mysql linux

Preparation before installation

1. Check whether mysql has been installed and execute the command

[root@localhost /]# rpm -qa | grep mysql
Copy after login
Copy after login

What is the process of installing mysql under linux?

From the execution result, we can see that we have installed it mysql-libs-5.1.73-5.el6_6.x86_64, execute the delete command

[root@localhost /]# rpm -e --nodeps mysql-libs-5.1.73-5.el6_6.x86_64
Copy after login

Execute the query command again to check whether it is deleted

[root@localhost /]# rpm -qa | grep mysql
Copy after login
Copy after login

What is the process of installing mysql under linux?

2. Query all folders corresponding to Mysql

[root@localhost /]# whereis mysqlmysql: /usr/bin/mysql /usr/include/mysql[root@localhost lib]# find / -name mysql/data/mysql/data/mysql/mysql
Copy after login

Delete related directories or files

[root@localhost /]#  rm -rf /usr/bin/mysql /usr/include/mysql /data/mysql /data/mysql/mysql
Copy after login

Verify whether the deletion is complete

[root@localhost /]# whereis mysql
mysql:[root@localhost /]# find / -name mysql[root@localhost /]#
Copy after login

3. Check the mysql user group and whether the user exists, if not, create

[root@localhost /]# cat /etc/group | grep mysql[root@localhost /]# cat /etc/passwd |grep mysql[root@localhost /]# groupadd mysql[root@localhost /]# useradd -r -g mysql mysql[root@localhost /]#
Copy after login

4. Download the Mysql installation package for Linux from the official website

Download command:

[root@localhost /]#  wget https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.24-linux-glibc2.12-x86_64.tar.gz
Copy after login

You can also go directly to mysql official website Select the corresponding version to download.

What is the process of installing mysql under linux?

##2 Install Mysql
1. Find the Mysql installation package in the directory where the

wget command is executed or in your upload directory: mysql-5.7.24-linux-glibc2.12-x86_64.tar.gzExecute the decompression command:

[root@localhost /]#  tar xzvf mysql-5.7.24-linux-glibc2.12-x86_64.tar.gz
[root@localhost /]# ls
mysql-5.7.24-linux-glibc2.12-x86_64
mysql-5.7.24-linux-glibc2.12-x86_64.tar.gz
Copy after login

After decompression is completed, you can see that there is one more in the current directory Unzip the file, move the file to

/usr/local/, and change the folder name to mysql.

If

mysql already exists under /usr/local/, please modify the existing mysql file to another name, otherwise the subsequent steps may not proceed correctly .

The execution command is as follows:

[root@localhost /]# mv mysql-5.7.24-linux-glibc2.12-x86_64 /usr/local/[root@localhost /]# cd /usr/local/[root@localhost /]# mv mysql-5.7.24-linux-glibc2.12-x86_64 mysql
Copy after login

If the

mysql folder does not exist under /usr/local/, directly execute the following command, The above effects can also be achieved.

[root@localhost /]# mv mysql-5.7.24-linux-glibc2.12-x86_64 /usr/local/mysql
Copy after login

2. Create the data directory in the

/usr/local/mysql directory

[root@localhost /]# mkdir /usr/local/mysql/data
Copy after login

3. Change the user groups to which all directories and folders in the mysql directory belong and users, and permissions

[root@localhost /]# chown -R mysql:mysql /usr/local/mysql[root@localhost /]# chmod -R 755 /usr/local/mysql
Copy after login

4. Compile, install and initialize mysql,

Be sure to remember the password at the end of the initialization output log (temporary database administrator password)

[root@localhost /]# cd /usr/local/mysql/bin[root@localhost bin]# ./mysqld --initialize --user=mysql --datadir=/usr/local/mysql/data --basedir=/usr/local/mysql
Copy after login

Supplementary instructions:
In step 4, an error may occur:

What is the process of installing mysql under linux?

This error may occur: To solve the problem, first check whether the link library file is installed and use the command to verify.

[root@localhost bin]# rpm -qa|grep libaio   
[root@localhost bin]#
Copy after login

After running the command, it is found that the link library file does not exist in the system.

[root@localhost bin]#  yum install  libaio-devel.x86_64
Copy after login

After the installation is successful, continue to run the database initialization command. At this time, the following error may occur:

What is the process of installing mysql under linux?

After executing the following command:

[root@localhost bin]#  yum -y install numactl
Copy after login

After the execution is correct, re-execute the initialization command in step 4. After it is correct, Go to step 5 again!

5. After running the initialization command successfully, the output log is as follows:

What is the process of installing mysql under linux?

Record the last position of the log

root@localhost:## The string after #, this string is the temporary login password of the mysql administrator. 6. Edit the configuration file my.cnf and add the configuration as follows

[root@localhost bin]#  vi /etc/my.cnf[mysqld]datadir=/usr/local/mysql/data
port=3306sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLESsymbolic-links=0max_connections=600innodb_file_per_table=1lower_case_table_names=1character_set_server=utf8
Copy after login

lower_case_table_names: whether it is case sensitive, 1 means the table name is lowercase when storing, and not case sensitive when operating; 0 means Case-sensitive; cannot be set dynamically. After modification, it must be restarted to take effect:

character_set_server: Set the default character set of the database. If not set, the default is latin1

innodb_file_per_table: Whether to store the data of each table separately, 1 means Separate storage; 0 means to close the independent table space. You can check the difference in file structure by viewing the data directory;

7. Test starting the mysql server

[root@localhost /]# /usr/local/mysql/support-files/mysql.server start
Copy after login

The following results are displayed, indicating that the database is installed and can Normal startup

What is the process of installing mysql under linux?

Abnormal situation
If the following prompt message appears
Starting MySQL... ERROR! The server quit without updating PID file
Copy after login

Check whether there are mysql and mysqld services, if If exists, end the process and re-execute the startup command

#查询服务
ps -ef|grep mysql | grep -v grep
ps -ef|grep mysqld | grep -v grep

#结束进程
kill -9 PID

#启动服务
 /usr/local/mysql/support-files/mysql.server start
Copy after login

What is the process of installing mysql under linux?

8. Add a soft connection and restart the mysql service
[root@localhost /]#  ln -s /usr/local/mysql/support-files/mysql.server /etc/init.d/mysql 
[root@localhost /]#  ln -s /usr/local/mysql/bin/mysql /usr/bin/mysql[root@localhost /]#  service mysql restart
Copy after login

9. Log in mysql, change the password (the password is the temporary password generated in step 5)

[root@localhost /]#  mysql -u root -pEnter password:mysql>set password for root@localhost = password('yourpass');
Copy after login

Note: When entering the password, there will be no display after Enter password. At this time, the input is actually successful. After entering the password, return directly Just take a car. Enter this command: mysql -u root -p Add your password, press Enter, and you can directly enter the database

10、开放远程连接

mysql>use mysql;
msyql>update user set user.Host='%' where user.User='root';
mysql>flush privileges;
Copy after login

What is the process of installing mysql under linux?

11、设置开机自动启动

1、将服务文件拷贝到init.d下,并重命名为mysql[root@localhost /]# cp /usr/local/mysql/support-files/mysql.server /etc/init.d/mysqld2、赋予可执行权限[root@localhost /]# chmod +x /etc/init.d/mysqld3、添加服务[root@localhost /]# chkconfig --add mysqld4、显示服务列表[root@localhost /]# chkconfig --list
Copy after login

什么是Linux系统

Linux是一种免费使用和自由传播的类UNIX操作系统,是一个基于POSIX的多用户、多任务、支持多线程和多CPU的操作系统,使用Linux能运行主要的Unix工具软件、应用程序和网络协议。

The above is the detailed content of What is the process of installing mysql under linux?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

deepseek web version entrance deepseek official website entrance deepseek web version entrance deepseek official website entrance Feb 19, 2025 pm 04:54 PM

DeepSeek is a powerful intelligent search and analysis tool that provides two access methods: web version and official website. The web version is convenient and efficient, and can be used without installation; the official website provides comprehensive product information, download resources and support services. Whether individuals or corporate users, they can easily obtain and analyze massive data through DeepSeek to improve work efficiency, assist decision-making and promote innovation.

How to fix mysql_native_password not loaded errors on MySQL 8.4 How to fix mysql_native_password not loaded errors on MySQL 8.4 Dec 09, 2024 am 11:42 AM

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the "MySQL Native Password" plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

How to install deepseek How to install deepseek Feb 19, 2025 pm 05:48 PM

There are many ways to install DeepSeek, including: compile from source (for experienced developers) using precompiled packages (for Windows users) using Docker containers (for most convenient, no need to worry about compatibility) No matter which method you choose, Please read the official documents carefully and prepare them fully to avoid unnecessary trouble.

BITGet official website installation (2025 beginner's guide) BITGet official website installation (2025 beginner's guide) Feb 21, 2025 pm 08:42 PM

BITGet is a cryptocurrency exchange that provides a variety of trading services including spot trading, contract trading and derivatives. Founded in 2018, the exchange is headquartered in Singapore and is committed to providing users with a safe and reliable trading platform. BITGet offers a variety of trading pairs, including BTC/USDT, ETH/USDT and XRP/USDT. Additionally, the exchange has a reputation for security and liquidity and offers a variety of features such as premium order types, leveraged trading and 24/7 customer support.

Ouyi okx installation package is directly included Ouyi okx installation package is directly included Feb 21, 2025 pm 08:00 PM

Ouyi OKX, the world's leading digital asset exchange, has now launched an official installation package to provide a safe and convenient trading experience. The OKX installation package of Ouyi does not need to be accessed through a browser. It can directly install independent applications on the device, creating a stable and efficient trading platform for users. The installation process is simple and easy to understand. Users only need to download the latest version of the installation package and follow the prompts to complete the installation step by step.

Get the gate.io installation package for free Get the gate.io installation package for free Feb 21, 2025 pm 08:21 PM

Gate.io is a popular cryptocurrency exchange that users can use by downloading its installation package and installing it on their devices. The steps to obtain the installation package are as follows: Visit the official website of Gate.io, click "Download", select the corresponding operating system (Windows, Mac or Linux), and download the installation package to your computer. It is recommended to temporarily disable antivirus software or firewall during installation to ensure smooth installation. After completion, the user needs to create a Gate.io account to start using it.

Ouyi Exchange Download Official Portal Ouyi Exchange Download Official Portal Feb 21, 2025 pm 07:51 PM

Ouyi, also known as OKX, is a world-leading cryptocurrency trading platform. The article provides a download portal for Ouyi's official installation package, which facilitates users to install Ouyi client on different devices. This installation package supports Windows, Mac, Android and iOS systems. Users can choose the corresponding version to download according to their device type. After the installation is completed, users can register or log in to the Ouyi account, start trading cryptocurrencies and enjoy other services provided by the platform.

gate.io official website registration installation package link gate.io official website registration installation package link Feb 21, 2025 pm 08:15 PM

Gate.io is a highly acclaimed cryptocurrency trading platform known for its extensive token selection, low transaction fees and a user-friendly interface. With its advanced security features and excellent customer service, Gate.io provides traders with a reliable and convenient cryptocurrency trading environment. If you want to join Gate.io, please click the link provided to download the official registration installation package to start your cryptocurrency trading journey.

See all articles