Skip to content

Use an APT repository to install Percona Server for MySQL 8.3

Ready-to-use packages are available from the Percona Server for MySQL software repositories and the Percona downloads page.

Specific information on the supported platforms, products, and versions is described in Percona Software and Platform Lifecycle.

We gather Telemetry data in the Percona packages and Docker images.

Install Percona Server for MySQL using APT

To install Percona Server for MySQL using APT, do the following steps:

  1. Update the package repositories:

    $ sudo apt update
    
  2. Install the curl download utility if needed:

    $ sudo apt install curl
    
  3. Download the percona-release repository package:

    $ curl -O https://repo.percona.com/apt/percona-release_latest.generic_all.deb
    
  4. Install the downloaded package with apt as root or with sudo:

    $ sudo apt install gnupg2 lsb-release ./percona-release_latest.generic_all.deb
    
  5. Refresh the local cache to update the package information:

    $ sudo apt update
    
  6. Use percona-release to set up the repository for the Percona Server for MySQL 8.3 version:

    $ sudo percona-release enable-only ps-8x-innovation release
    $ sudo percona-release enable tools release
    
  7. You can check the repository setup for the Percona original release list in /etc/apt/sources.list.d/percona-original-release.list.

  8. Install the server package with the percona-release command:

    $ sudo apt install percona-server-server
    

See Configuring Percona repositories with percona-release for more information.

Percona Server for MySQL 8.2 comes with the MyRocks storage engine. This storage engine is installed as a plugin. For information on installing and configuring MyRocks, refer to the Percona MyRocks Installation Guide.

Percona Server for MySQL contains user-defined functions from Percona Toolkit. These user-defined functions provide faster checksums. For more details on the user-defined functions, see Percona Toolkit UDF functions.

After the installation completes, run the following commands to create these functions:

mysql -e "CREATE FUNCTION fnv1a_64 RETURNS INTEGER SONAME 'libfnv1a_udf.so'"
mysql -e "CREATE FUNCTION fnv_64 RETURNS INTEGER SONAME 'libfnv_udf.so'"
mysql -e "CREATE FUNCTION murmur_hash RETURNS INTEGER SONAME 'libmurmur_udf.so'"

Install the Percona Testing repository using APT

Percona offers pre-release builds from the testing repository. To enable it, run percona-release with the testing argument. Run the following command as root or use the sudo command:

$ sudo percona-release enable ps-8x-innovation testing

These builds should not be run in production. This build may not contain all of the features available in the final release. The features may change without notice.

Get expert help

If you need assistance, visit the community forum for comprehensive and free database knowledge, or contact our Percona Database Experts for professional support and services.


Last update: 2024-05-02