How can i know if percona is installed
Asked Answered
M

2

5

I though it is a silly question but after searching all over internet could not find an answer. So how do I check if I have Percona or original MySQL installed on the server?

Magnification answered 21/3, 2014 at 9:56 Comment(2)
try SHOW VARIABLES LIKE "%version%";Nichellenichol
Thanx. This works. I also found another way: /etc/init.d/mysql restart shows 'Shutting down MySQL (Percona Server)Magnification
Y
6
service mysql status

On a centos/fedora based server, this command is a pseudonym for

systemctl status mysql

it will report

mysqld.service - MySQL Percona Server

If you have percona installed. You may need root permissions.

Yulandayule answered 4/9, 2015 at 8:30 Comment(0)
C
4

Another way to check is to issue "SHOW PLUGINS" from your mysql client.

If you see anything XTRADB such as XTRADB_READ_VIEW/XTRADB_INTERNAL_HASH_TABLES/XTRADB_RSEG then you know it is Percona Server since they add in XTRADB. That will not be part of Oracle Community.

Chouinard answered 7/11, 2015 at 0:42 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.