邓淳远、崔鹏宇、翁思扬组云计算期末项目
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

5 righe
218 B

4 anni fa
  1. use mysql;
  2. select host, user from user;
  3. update user set authentication_string = password('root') where user = 'root';
  4. GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;
  5. flush priveleges;