Vorrei cambiare una password per un utente chiamato tom usando l’opzione della riga di comando UNIX / Linux. Come posso cambiare una password utente sul server MySQL?,
Tutorial details | |
---|---|
Difficulty | Easy (rss) |
Root privileges | Yes (mysql admin user) |
Requirements | mysql |
Time | N/A |
You need to use mysql (or mysql.exe on MS-Windows based system) command on a Linux or Unix like operating system., Aprire un’app terminale o una sessione ssh. Digitare il seguente comando al prompt della shell per accedere come utente root. La sintassi è la seguente per il sistema operativo Unix like.,
Come modificare la password dell’utente in mysql
Mysql cambiare la password dell’utente che utilizza il metodo riportato di seguito:
mysql sql comando per modificare la password di un utente
accedi come root da shell:$ mysql -u root -p
Passare a mysql database (tipo comando mysql> prompt dei comandi, non includono la stringa “mysql>”):mysql> use mysql;
la sintassi è La seguente per il server di database mysql versione 5.7.,5 o versioni precedenti:
SET PASSWORD FOR 'user-name-here'@'hostname' = PASSWORD('new-password');
Per mysql database server versione 5.7.,use the following sql syntax:
UPDATE mysql.user SET Password=PASSWORD('new-password-here') WHERE USER='user-name-here' AND Host='host-name-here';
In this example, change a password for a user called tom:
SET PASSWORD FOR 'tom'@'localhost' = PASSWORD('foobar');
OR
UPDATE mysql.user SET Password=PASSWORD('foobar') WHERE USER='tom' AND Host='localhost';
Sample outputs:
Query OK, 1 row affected (0.00 sec)Rows matched: 1 Changed: 1 Warnings: 0
Feel free to replace the values for “tom” (user), “localhost” (hostname), and “foobar” (password) as per your requirements., Infine, digitare il seguente comando per ricaricare privilegi:
FLUSH PRIVILEGES;
Esempio di output:
Query OK, 0 rows affected (0.00 sec)
Per uscire dalla mysql> prompt dei comandi, digitare:
quit;
Utente o è possibile testare la nuova password utilizzando la shell seguente sintassi:mysql -u tom -p
Quando richiesto, immettere la nuova password impostata in precedenza per tom utente.,
Sessione di esempio
Fig.01: Mysql Aggiornamento / Modifica della password (clicca per ingrandire)
– Ricevi gli ultimi tutorial su Linux, Open Source& DevOps tramite feed RSS o newsletter settimanale.
comments 13 commenti finora…, add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.,04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |