Hi Everyone,
Just to give you back some information about this
So my solution was :
And Then :
Just to give you back some information about this
SQL:
MariaDB [(none)]> SELECT User, Host FROM mysql.user WHERE User='admin';
+-------+-----------+
| User | Host |
+-------+-----------+
| admin | localhost |
+-------+-----------+
1 row in set (0.000 sec)
So my solution was :
SQL:
CREATE USER 'admin'@'127.0.0.1' IDENTIFIED BY '1234xxx';
SQL:
GRANT ALL PRIVILEGES ON *.* TO 'admin'@'127.0.0.1' WITH GRANT OPTION;
And Then :
Bash:
sudo perl mysqltuner.pl --host 127.0.0.1 --user admin --pass '1234xxx'