Ik wil een wachtwoord wijzigen voor een gebruiker genaamd tom met behulp van UNIX / Linux command line optie. Hoe verander ik een gebruikerswachtwoord op MySQL server?,
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., Open een terminal-app of ssh-sessie. Typ het volgende commando achter de shell prompt om in te loggen als root gebruiker. De syntaxis is als volgt Voor Unix-achtige besturingssysteem.,
het wijzigen van wachtwoord van gebruiker op de mysql
Mysql-gebruikerswachtwoord wijzigen met behulp van de volgende methode:
mysql sql commando uit om een wachtwoord
Inloggen als root van de shell:$ mysql -u root -p
Overschakelen naar de mysql-database (type opdracht bij mysql> prompt, moet u geen string “mysql>”):mysql> use mysql;
De syntax is als volgt voor de mysql-database server versie 5.7.,5 of ouder:
SET PASSWORD FOR 'user-name-here'@'hostname' = PASSWORD('new-password');
voor MySQL-databaseserver versie 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., Tot slot, type je het volgende commando om te herladen rechten:
FLUSH PRIVILEGES;
Voorbeeld uitgangen:
Query OK, 0 rows affected (0.00 sec)
om Te verlaten van mysql> prompt, type je in:
quit;
Gebruiker of u kunt het testen van nieuwe wachtwoord gebruik het volgende shell syntaxis:mysql -u tom -p
Wanneer bevorderd voer het nieuwe wachtwoord dat je eerder voor tom gebruiker.,
Monstersessie
Fig.01: MySQL Updating / Changing password (klik om te vergroten)
Get ontvang de nieuwste tutorials over Linux, Open Source & DevOps via RSS-feed of wekelijkse e-mail nieuwsbrief.13 reacties tot nu toe…, 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 |