網(wǎng)站怎樣才有流量seo是指搜索引擎營銷
樹莓派 mysql (兼容mariadb)登陸問題
樹莓派 MySQL 登陸問題
1 使用默認(rèn)賬號(hào)登陸
- 在首次登陸的情況下,系統(tǒng)默認(rèn)為root用戶授權(quán)
sudo su root
```
2. 使用root用戶登陸MySQL
mysql -u root

3. 修改用戶名和密碼
update mysql.user set plugin=‘mysql_native_passworrd’ where user=‘root’;
update mysql.user set password=password(‘wangting1986’) where user=‘root’;
flush privileges;
**出現(xiàn)了Plugin 'mysql_native_passworrd' is not loaded -故障的處理**