Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 190 Bytes

mysql.md

File metadata and controls

14 lines (11 loc) · 190 Bytes
title
MySQL

CLI

# Enter shell
  mysql -u <user-name> -p
  (Enter password)

# Change root password
  ALTER USER 'root'@'localhost' IDENTIFIED BY '<new-password>';