23 lines
684 B
Plaintext
23 lines
684 B
Plaintext
|
|
# - Install MySQL client libraries /libmysqlclient
|
|
# -
|
|
apt-get install libmariadb-dev libmariadb-dev-compat
|
|
apt-get install cpanminus
|
|
|
|
apt-get install libdbd-mysql-perl
|
|
# - OR /AND
|
|
cpanm DBD::mysql
|
|
|
|
|
|
# - Fetch the repository packages from web
|
|
# -
|
|
# - Once you install this package the Percona repositories should be added.
|
|
# - You can check the repository setup in the /etc/apt/sources.list.d/percona-release.list file.
|
|
# -
|
|
cd /tmp
|
|
wget https://repo.percona.com/apt/percona-release_0.1-4.$(lsb_release -sc)_all.deb
|
|
dpkg -i percona-release_0.1-4.$(lsb_release -sc)_all.deb
|
|
|
|
apt-get update
|
|
apt-get install percona-server-server-5.7 percona-server-common-5.7 percona-server-client-5.7
|