邓淳远、崔鹏宇、翁思扬组云计算期末项目
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

5 satır
218 B

4 yıl önce
  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;