Home Database Mysql Tutorial How to reinstall mysql on linux

How to reinstall mysql on linux

Apr 20, 2023 am 10:11 AM

Installing a MySQL database on a Linux system is a very common task. The MySQL database is open source and supports Structured Query Language (Structured Query Language), also known as SQL. Not only that, MySQL also has many powerful features, such as transaction support, data encryption, data partitioning, and distributed databases.

This article will introduce the process of reinstalling the MySQL database. The following are some corresponding steps:

  1. Uninstall the MySQL database

If you have installed the MySQL database on Linux, you need to uninstall it first. The operation is as follows:

1.1 Check whether MySQL has been installed

You can use the following command to check whether MySQL has been installed on your system:

sudo dpkg --get-selections | grep mysql

1.2 Uninstall MySQL

If you find that MySQL has been installed on the system, you can use the following command to uninstall:

sudo apt-get remove --purge mysql*
sudo apt-get autoremove
sudo apt-get autoclean

In addition, you can also use the following command:

sudo service mysql stop
sudo killall -9 mysql mysqld_safe mysqld
sudo apt-get purge mysql-server mysql-client mysql-common mysql-server-core-...
  1. Install MySQL database

2.1 Download the MySQL database installation package

You can download the latest version of MySQL from the official website (https://dev.mysql.com/downloads/mysql/), or you can use the following command to download. Please note the replacement version number:

wget https://dev.mysql.com/get/mysql-apt-config_0.8.16-1_all.deb

2.2 Install the MySQL database installation package

After downloading the MySQL database installation package, we need to install it. To do this, use the following command:

sudo dpkg -i mysql-apt-config_0.8.16-1_all.deb
sudo apt-get update
sudo apt-get install mysql-server mysql-client

When you run this command, you will be prompted for a new MySQL password and asked for confirmation. Be sure to keep your password and follow the prompts to complete the installation.

  1. Configuring the MySQL database

3.1 Open the MySQL port

In order for MySQL to accept connections from other computers, the MySQL port needs to be opened in the firewall . On most Linux distributions, the default port is 3306.

To do this, you can use the following command:

sudo ufw allow mysql

3.2 Configuring MySQL

MySQL is a highly customizable database system. Before we do anything, we have to understand how to link to MySQL and start configuring it.

MySQL can be started using the following command:

sudo service mysql start

Once the MySQL server has been started, you can access the MySQL shell console. This can be done using the following command:

mysql -u root -p

When you execute this command, MySQL will ask you for your password. After you enter the correct password, you can access the MySQL console.

In the MySQL console, you can use the SQL language to interact with the server. Here are some basic commands to remember:

  • SHOW DATABASES; Show all databases
  • CREATE DATABASE databasename; Create a New database
  • USE databasename; Connect you to the selected database
  • SHOW tables; Show all data tables
  • CREATE TABLE tablename(column1 data type,column2 datatype, etc); Create a new table
  • SELECT * FROM tablename; Display all data of the table

So far, we have finished all the processes of reinstalling MySQL. In this process, you not only learned to download and install MySQL, but also learned how to open the MySQL port and how to perform some of the most basic settings on MySQL. If you are familiar with MySQL, then you can already install and configure a powerful database on Linux, which will provide unlimited convenience for your work and business.

The above is the detailed content of How to reinstall mysql on 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

Undress AI Tool

Undress AI Tool

Undress images for free

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.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

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)

Establishing secure remote connections to a MySQL server Establishing secure remote connections to a MySQL server Jul 04, 2025 am 01:44 AM

TosecurelyconnecttoaremoteMySQLserver,useSSHtunneling,configureMySQLforremoteaccess,setfirewallrules,andconsiderSSLencryption.First,establishanSSHtunnelwithssh-L3307:localhost:3306user@remote-server-Nandconnectviamysql-h127.0.0.1-P3307.Second,editMyS

How to add the MySQL bin directory to the system PATH How to add the MySQL bin directory to the system PATH Jul 01, 2025 am 01:39 AM

To add MySQL's bin directory to the system PATH, it needs to be configured according to the different operating systems. 1. Windows system: Find the bin folder in the MySQL installation directory (the default path is usually C:\ProgramFiles\MySQL\MySQLServerX.X\bin), right-click "This Computer" → "Properties" → "Advanced System Settings" → "Environment Variables", select Path in "System Variables" and edit it, add the MySQLbin path, save it and restart the command prompt and enter mysql--version verification; 2.macOS and Linux systems: Bash users edit ~/.bashrc or ~/.bash_

Where does mysql workbench save connection information Where does mysql workbench save connection information Jun 26, 2025 am 05:23 AM

MySQLWorkbench stores connection information in the system configuration file. The specific path varies according to the operating system: 1. It is located in %APPDATA%\MySQL\Workbench\connections.xml in Windows system; 2. It is located in ~/Library/ApplicationSupport/MySQL/Workbench/connections.xml in macOS system; 3. It is usually located in ~/.mysql/workbench/connections.xml in Linux system or ~/.local/share/data/MySQL/Wor

Analyzing the MySQL Slow Query Log to Find Performance Bottlenecks Analyzing the MySQL Slow Query Log to Find Performance Bottlenecks Jul 04, 2025 am 02:46 AM

Turn on MySQL slow query logs and analyze locationable performance issues. 1. Edit the configuration file or dynamically set slow_query_log and long_query_time; 2. The log contains key fields such as Query_time, Lock_time, Rows_examined to assist in judging efficiency bottlenecks; 3. Use mysqldumpslow or pt-query-digest tools to efficiently analyze logs; 4. Optimization suggestions include adding indexes, avoiding SELECT*, splitting complex queries, etc. For example, adding an index to user_id can significantly reduce the number of scanned rows and improve query efficiency.

Performing logical backups using mysqldump in MySQL Performing logical backups using mysqldump in MySQL Jul 06, 2025 am 02:55 AM

mysqldump is a common tool for performing logical backups of MySQL databases. It generates SQL files containing CREATE and INSERT statements to rebuild the database. 1. It does not back up the original file, but converts the database structure and content into portable SQL commands; 2. It is suitable for small databases or selective recovery, and is not suitable for fast recovery of TB-level data; 3. Common options include --single-transaction, --databases, --all-databases, --routines, etc.; 4. Use mysql command to import during recovery, and can turn off foreign key checks to improve speed; 5. It is recommended to test backup regularly, use compression, and automatic adjustment.

Handling NULL Values in MySQL Columns and Queries Handling NULL Values in MySQL Columns and Queries Jul 05, 2025 am 02:46 AM

When handling NULL values ​​in MySQL, please note: 1. When designing the table, the key fields are set to NOTNULL, and optional fields are allowed NULL; 2. ISNULL or ISNOTNULL must be used with = or !=; 3. IFNULL or COALESCE functions can be used to replace the display default values; 4. Be cautious when using NULL values ​​directly when inserting or updating, and pay attention to the data source and ORM framework processing methods. NULL represents an unknown value and does not equal any value, including itself. Therefore, be careful when querying, counting, and connecting tables to avoid missing data or logical errors. Rational use of functions and constraints can effectively reduce interference caused by NULL.

Resetting the root password for MySQL server Resetting the root password for MySQL server Jul 03, 2025 am 02:32 AM

To reset the root password of MySQL, please follow the following steps: 1. Stop the MySQL server, use sudosystemctlstopmysql or sudosystemctlstopmysqld; 2. Start MySQL in --skip-grant-tables mode, execute sudomysqld-skip-grant-tables&; 3. Log in to MySQL and execute the corresponding SQL command to modify the password according to the version, such as FLUSHPRIVILEGES;ALTERUSER'root'@'localhost'IDENTIFIEDBY'your_new

how to check mysql version on windows command prompt how to check mysql version on windows command prompt Jul 01, 2025 am 01:41 AM

To check the MySQL version, you can use the following methods in the Windows command prompt: 1. Use the command line to view directly, enter mysql--version or mysql-V; 2. After logging in to the MySQL client, execute SELECTVERSION();; 3. Manually search through the installation path, switch to the MySQL bin directory and run mysql.exe--version. These methods are suitable for different scenarios, the first two are most commonly used, and the third one is suitable for situations where environment variables are not configured.

See all articles