Es geht weiter im Thema. Nachdem der LAMP-Stack eingerichtet ist tauchen leider immer noch ein paar Themen auf.
Ich glaube, dass ich ein neues Thema habe: ROOT-LOGIN-Stress MIT MARIADB .... ein Problem mit Authentifizierungs-Plugin unix_socket?
Vorweg: ganz großes SORRY - hier nochmals eine Frage- denn ich hänge gerade wieder:
Nach dem Einrichten eines LAMP auf einem Linux-Notebook - mit PHPMyAdmin hab ich festgestellt,
dass ich irgendwie nicht auf den PHPMyadmin mich einloggen kann.
Deshalb denke ich - muss ich nochmals das MySQL-DB-Passwort wechseln -
ich geh nach dieser Anleitung vor: Reset a MySQL root password - https://docs.rackspace.com/support/how- ... -password/
der MySQL-Server läuft - ergo ich stoppe zunächst dne MySQL und
Code: Alles auswählen
sudo /etc/init.d/mysqld stop
Code: Alles auswählen
Start MySQL without a password
Code: Alles auswählen
sudo mysqld_safe --skip-grant-tables &
Code: Alles auswählen
Connect to MySQL
Code: Alles auswählen
mysql -uroot
und mach weiter mit
Code: Alles auswählen
use mysql;
Code: Alles auswählen
(base) martin@mx:~
$ su
Passwort:
root@mx:/home/martin# mysql -uroot
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 5.5.5-10.3.31-MariaDB-0+deb10u1 Debian 10
Copyright (c) 2000, 2018, 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> use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> update user set authentication_string=PASSWORD("my new passwd ") where User='root';
Query OK, 1 row affected (0.02 sec)
Rows matched: 1 Changed: 1 Warnings: 0
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
mysql> quit
Bye
root@mx:/home/martin#
soweit - sogut - also das müsste nun doch geklappt haben: Denn wir haben die Zeile:
Code: Alles auswählen
Rows matched: 1 Changed: 1 Warnings: 0
aber - und das ist das Problem:
- ich kann mich - auch mit dem neuen Passwort nicht auf dem PHPMyadmin einloggen... Sehr merkwürdig... Obwohl ich ein neues Passwd - gesetzt habe, wie man oben sieht.
Fällt Euch irgendwie etwas ein !?
Freue mich von Euch nochmals - zu hören.