search
HomeDatabaseMysql TutorialHow to install MySQL using the APT library

APT is an installation package management tool under Linux and a client/server system. As part of its operation, APT uses a file that lists the mirror site addresses where software packages are available. This file is /etc/apt/sources.list.

How to install MySQL using the APT library

Add APT warehouse

  1. Visit https://dev.mysql.com/downloads/repo/apt/.

  2. Choose to download the deb package suitable for your platform.

  3. Execute the following command to install the downloaded software package.

  4. sudo dpkg -i /PATH/version-specific-package-name.deb

    Replace version-specific-package-name.deb with the name of the downloaded package.

  5. During installation, you need to select the version of mysql server and components. If you are unsure of the version, do not change the default version. If you do not want to install a certain component, select none. After selecting, select OK to complete the installation.

  6. After the installation is complete, you can also modify the mysql version by selecting the release version.

  7. You can use the following command to update the package.

  8. apt-get update

In addition to using the released deb package, you can also manually add the APT warehouse yourself. For details, see https://dev.mysql.com/doc/mysql-apt-repo-quick-guide/en/index.html#repo-qg-apt-repo-manual-setup

Note: MYSQL Once the APT repository takes effect, you cannot install any MYSQL package from the system's own software library.

APT install MYSQL

Use the following command to install mysql:

apt-get install mysql-server

The command to install the mysql client and database ordinary file is similar to the above command.

During the installation process, you need to provide a root user password (need to remember).

Tip: If you want to set a password later, you can not provide a password, select ok, and continue the installation. In this case, root can connect to mysql through Unix socket file and authorize through Socket Peer-Credential Pluggable Authentication. You can set the root password through mysql_secure_installation in the future.

Start and stop mysql server

After the Mysql server is installed, it will start automatically. You can use the following command to check the status of the Mysql server:

service mysql status

Use the following command to stop Mysql Server operation:

service mysql stop

Use the following command to start Mysql server

service mysql start

Use the following command to restart Mysql server

service mysql restart

Note: Some dependencies on the native MySQL package Third-party native repository packages may not work with MySQL APT repository packages. For example: konadi-backend-mysql, handlersocket-mysql-5.5, and zoneminder.

Select the release version

The default version for installation and upgrade of Mysql server and all components is the version selected from the added APT repository. The original selection can be modified at any time using the following commands.

dpkg-reconfigure mysql-apt-config

After the modification is completed, use the following command to update the mysql warehouse:

apt-get update

Run the apt-get install command again, and the version you selected will be installed.

The component version selection of Mysql is similar to this.

Install additional MYSQL products and components

After adding the Mysql APT repository. First, use the following command to get the latest package information from the APT repository.

apt-get update

Use the following command to install the component or add-on product of your choice, replacing package-name with the package name.

apt-get install package-name

For example: Install the shared client library:

apt-get install libmysqlclient18

APT delete mysql

To delete the mysql server and its components installed with the MySQL APT warehouse, first use the following command Delete mysql server:

apt-get remove mysql-server

Then delete the software automatically installed with mysql server:

apt-get autoremove

Use the following command to delete ancillary products and components, replace package-name with the name of the package you want to delete :

apt-get remove package-name

To view the packages you installed using the MySQL APT repository, use the following command:

dpkg -l | grep mysql | grep ii

Related learning recommendations: mysql tutorial(Video)

The above is the detailed content of How to install MySQL using the APT library. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:CSDN. If there is any infringement, please contact admin@php.cn delete
图文详解mysql架构原理图文详解mysql架构原理May 17, 2022 pm 05:54 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于架构原理的相关内容,MySQL Server架构自顶向下大致可以分网络连接层、服务层、存储引擎层和系统文件层,下面一起来看一下,希望对大家有帮助。

mysql的msi与zip版本有什么区别mysql的msi与zip版本有什么区别May 16, 2022 pm 04:33 PM

mysql的msi与zip版本的区别:1、zip包含的安装程序是一种主动安装,而msi包含的是被installer所用的安装文件以提交请求的方式安装;2、zip是一种数据压缩和文档存储的文件格式,msi是微软格式的安装包。

mysql怎么去掉第一个字符mysql怎么去掉第一个字符May 19, 2022 am 10:21 AM

方法:1、利用right函数,语法为“update 表名 set 指定字段 = right(指定字段, length(指定字段)-1)...”;2、利用substring函数,语法为“select substring(指定字段,2)..”。

mysql怎么替换换行符mysql怎么替换换行符Apr 18, 2022 pm 03:14 PM

在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

mysql怎么将varchar转换为int类型mysql怎么将varchar转换为int类型May 12, 2022 pm 04:51 PM

转换方法:1、利用cast函数,语法“select * from 表名 order by cast(字段名 as SIGNED)”;2、利用“select * from 表名 order by CONVERT(字段名,SIGNED)”语句。

MySQL复制技术之异步复制和半同步复制MySQL复制技术之异步复制和半同步复制Apr 25, 2022 pm 07:21 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

mysql怎么判断是否是数字类型mysql怎么判断是否是数字类型May 16, 2022 am 10:09 AM

在mysql中,可以利用REGEXP运算符判断数据是否是数字类型,语法为“String REGEXP '[^0-9.]'”;该运算符是正则表达式的缩写,若数据字符中含有数字时,返回的结果是true,反之返回的结果是false。

带你把MySQL索引吃透了带你把MySQL索引吃透了Apr 22, 2022 am 11:48 AM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了mysql高级篇的一些问题,包括了索引是什么、索引底层实现等等问题,下面一起来看一下,希望对大家有帮助。

See all articles

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)
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.