Ungayisebenzisa Kanjani I-MySQL Ngaphandle Kwephasiwedi (kanye Nezingozi Zokuphepha)

Ungayisebenzisa Kanjani I-MySQL Ngaphandle Kwephasiwedi (kanye Nezingozi Zokuphepha)

Bathi igama eliyimfihlo elingcono kakhulu lelo akudingekile ukuba ulikhumbule. Endabeni ye-MySQL lokhu kungenzeka ngenxa ye-plugin i-auth_socket kanye nenguqulo yayo ye-MariaDB - unix_socket.

Womabili lawa ma-plugin awamusha nhlobo; kuningi osekushiwo ngawo kule bhulogi efanayo, isibonelo esihlokweni mayelana uwashintsha kanjani amaphasiwedi ku-MySQL 5.7 usebenzisa i-auth_socket plugin. Kodwa-ke, ngenkathi ngibheka ukuthi yini entsha ku-MariaDB 10.4, ngathola ukuthi i-unix_socket manje isifakwe ngokuzenzakalelayo futhi ingenye yezindlela zokuqinisekisa (β€œeyodwa yazo”, ngoba ku-MariaDB 10.4 i-plugin engaphezu kweyodwa itholakala kumsebenzisi oyedwa ukuze iqinisekiswe, okuyinto kuchazwe embhalweni "Ukuqinisekisa" okuvela ku-MariaDB 10.04).

Njengoba ngishilo, lokhu akuzona izindaba, futhi lapho ufaka i-MySQL usebenzisa amaphakheji we-.deb asekelwa ithimba le-Debian, umsebenzisi wempande udalelwa ukuqinisekiswa kwesokhethi. Lokhu kuyiqiniso kokubili i-MySQL ne-MariaDB.

root@app:~# apt-cache show mysql-server-5.7 | grep -i maintainers
Original-Maintainer: Debian MySQL Maintainers <[email protected]>
Original-Maintainer: Debian MySQL Maintainers <<a href="mailto:[email protected]">[email protected]</a>>

Ngamaphakheji we-Debian we-MySQL, umsebenzisi wempande ugunyazwe kanje:

root@app:~# whoami
root=
root@app:~# mysql
Welcome to the MySQL monitor.  Commands end with ; or g.
Your MySQL connection id is 4
Server version: 5.7.27-0ubuntu0.16.04.1 (Ubuntu)

Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.

mysql> select user, host, plugin, authentication_string from mysql.user where user = 'root';
+------+-----------+-------------+-----------------------+
| user | host      | plugin | authentication_string |
+------+-----------+-------------+-----------------------+
| root | localhost | auth_socket |                       |
+------+-----------+-------------+-----------------------+
1 row in set (0.01 sec)

Kuyafana nangephakheji ye-.deb ye-MariaDB:

10.0.38-MariaDB-0ubuntu0.16.04.1 Ubuntu 16.04

MariaDB [(none)]> show grants;
+------------------------------------------------------------------------------------------------+
| Grants for root@localhost                                                                      |
+------------------------------------------------------------------------------------------------+
| GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' IDENTIFIED VIA unix_socket WITH GRANT OPTION |
| GRANT PROXY ON ''@'%' TO 'root'@'localhost' WITH GRANT OPTION                                  |
+------------------------------------------------------------------------------------------------+
2 rows in set (0.00 sec)

Amaphakheji we-.deb asuka endaweni esemthethweni ye-Percona aphinde alungise ukuqinisekiswa komsebenzisi okuyizimpande ngaphansi kwe-auth-socket kanye ne-Percona Server. Ake senze isibonelo nge Iseva ye-Percona ye-MySQL 8.0.16-7 Ubuntu 16.04:

root@app:~# whoami
root
root@app:~# mysql
Welcome to the MySQL monitor.  Commands end with ; or g.
Your MySQL connection id is 9
Server version: 8.0.16-7 Percona Server (GPL), Release '7', Revision '613e312'

Copyright (c) 2009-2019 Percona LLC and/or its affiliates
Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.

mysql> select user, host, plugin, authentication_string from mysql.user where user ='root';
+------+-----------+-------------+-----------------------+
| user | host      | plugin | authentication_string |
+------+-----------+-------------+-----------------------+
| root | localhost | auth_socket |                       |
+------+-----------+-------------+-----------------------+
1 row in set (0.00 sec)

Uyini-ke umlingo? I-plugin ihlola ukuthi umsebenzisi we-Linux ufana nomsebenzisi we-MySQL esebenzisa inketho yesokhethi ye-SO_PEERCRED ukuqoqa ulwazi mayelana nomsebenzisi osebenzisa uhlelo lweklayenti. Ngakho, i-plugin ingasetshenziswa kuphela kumasistimu asekela inketho ye-SO_PEERCRED, njenge-Linux. Inketho yesokhethi ye-SO_PEERCRED ikuvumela ukuthi uthole i-uid yenqubo ehlotshaniswa nesokhethi. Futhi-ke usevele ethola igama lomsebenzisi elihlobene nale uid.

Nasi isibonelo ngomsebenzisi "vagrant":

vagrant@mysql1:~$ whoami
vagrant
vagrant@mysql1:~$ mysql
ERROR 1698 (28000): Access denied for user 'vagrant'@'localhost'

Njengoba engekho umsebenzisi "ohambahambayo" ku-MySQL, sinqatshelwe ukufinyelela. Masidale umsebenzisi onjalo bese sizame futhi:

MariaDB [(none)]> GRANT ALL PRIVILEGES ON *.* TO 'vagrant'@'localhost' IDENTIFIED VIA unix_socket;
Query OK, 0 rows affected (0.00 sec)

vagrant@mysql1:~$ mysql
Welcome to the MariaDB monitor.  Commands end with ; or g.
Your MariaDB connection id is 45
Server version: 10.0.38-MariaDB-0ubuntu0.16.04.1 Ubuntu 16.04
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.

MariaDB [(none)]> show grants;
+---------------------------------------------------------------------------------+
| Grants for vagrant@localhost                                                    |
+---------------------------------------------------------------------------------+
| GRANT ALL PRIVILEGES ON *.* TO 'vagrant'@'localhost' IDENTIFIED VIA unix_socket |
+---------------------------------------------------------------------------------+
1 row in set (0.00 sec)

Kwenzekile!

Nokho, kuthiwani ngokusabalalisa okungeyona i-Debian lapho lokhu kunganikezwa ngokuzenzakalelayo? Ake sizame i-Percona Server ye-MySQL 8 efakwe ku-CentOS 7:

mysql> show variables like '%version%comment';
+-----------------+---------------------------------------------------+
| Variable_name   | Value                                   |
+-----------------+---------------------------------------------------+
| version_comment | Percona Server (GPL), Release 7, Revision 613e312 |
+-----------------+---------------------------------------------------+
1 row in set (0.01 sec)

mysql> CREATE USER 'percona'@'localhost' IDENTIFIED WITH auth_socket;
ERROR 1524 (HY000): Plugin 'auth_socket' is not loaded

I-Bummer. Yini eyayishoda? I-plugin ayilayishiwe:

mysql> pager grep socket
PAGER set to 'grep socket'
mysql> show plugins;
47 rows in set (0.00 sec)

Masingeze i-plugin kunqubo:

mysql> nopager
PAGER set to stdout
mysql> INSTALL PLUGIN auth_socket SONAME 'auth_socket.so';
Query OK, 0 rows affected (0.00 sec)

mysql> pager grep socket; show plugins;
PAGER set to 'grep socket'
| auth_socket                     | ACTIVE | AUTHENTICATION | auth_socket.so | GPL     |
48 rows in set (0.00 sec)

Manje sesinakho konke esikudingayo. Ake sizame futhi:

mysql> CREATE USER 'percona'@'localhost' IDENTIFIED WITH auth_socket;
Query OK, 0 rows affected (0.01 sec)
mysql> GRANT ALL PRIVILEGES ON *.* TO 'percona'@'localhost';
Query OK, 0 rows affected (0.01 sec)

Manje usungakwazi ukungena ngemvume usebenzisa igama lomsebenzisi elithi β€œpercona”.

[percona@ip-192-168-1-111 ~]$ whoami
percona
[percona@ip-192-168-1-111 ~]$ mysql -upercona
Welcome to the MySQL monitor.  Commands end with ; or g.
Your MySQL connection id is 19
Server version: 8.0.16-7 Percona Server (GPL), Release 7, Revision 613e312

Copyright (c) 2009-2019 Percona LLC and/or its affiliates
Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.

mysql> select user, host, plugin, authentication_string from mysql.user where user ='percona';
+---------+-----------+-------------+-----------------------+
| user    | host   | plugin   | authentication_string |
+---------+-----------+-------------+-----------------------+
| percona | localhost | auth_socket |                       |
+---------+-----------+-------------+-----------------------+
1 row in set (0.00 sec)

Futhi kwasebenza futhi!

Umbuzo: uzokwazi yini ukungena kusistimu ngaphansi kokungena ngemvume okufanayo kwe-percona, kodwa njengomsebenzisi ohlukile?

[percona@ip-192-168-1-111 ~]$ logout
[root@ip-192-168-1-111 ~]# mysql -upercona
ERROR 1698 (28000): Access denied for user 'percona'@'localhost'

Cha, ngeke kusebenze.

isiphetho

I-MySQL iguquguquka kakhulu ezicini ezimbalwa, enye yazo indlela yokuqinisekisa. Njengoba ubona kulokhu okuthunyelwe, ukufinyelela kungatholwa ngaphandle kwamaphasiwedi, ngokusekelwe kubasebenzisi be-OS. Lokhu kungaba wusizo ezimeni ezithile, futhi esinye sazo kulapho ufuduka usuka ku-RDS/Aurora uye ku-MySQL evamile usebenzisa. Ukuqinisekiswa kwesizindalwazi se-IAMukuze uthole ukufinyelela, kodwa ngaphandle kwamaphasiwedi.

Source: www.habr.com

Engeza amazwana