Advertisement
pulser_777

Untitled

Feb 5th, 2019
477
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.94 KB | None | 0 0
  1. root@azteca:~# mysql -p
  2. Enter password:
  3. Welcome to the MariaDB monitor.  Commands end with ; or \g.
  4. Your MariaDB connection id is 16
  5. Server version: 10.3.8-MariaDB-1:10.3.8+maria~stretch mariadb.org binary distribution
  6.  
  7. Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
  8.  
  9. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
  10.  
  11. MariaDB [(none)]> INSTALL SONAME 'auth_gssapi';
  12. Query OK, 0 rows affected, 1 warning (0.005 sec)
  13.  
  14. MariaDB [(none)]> alter user pulser_777 identified via gssapi;
  15. Query OK, 0 rows affected (0.002 sec)
  16.  
  17. MariaDB [(none)]> select host,user,password,plugin from mysql.user where user='pulser_777';
  18. +------+------------+----------+--------+
  19. | host | user       | password | plugin |
  20. +------+------------+----------+--------+
  21. | %    | pulser_777 |          | gssapi |
  22. +------+------------+----------+--------+
  23. 1 row in set (0.001 sec)
  24.  
  25. MariaDB [(none)]> \q
  26. Bye
  27. root@azteca:~#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement