標籤:raspbian http 需要 div min 密碼 alt mic flow
樹莓派 -- mysql 安裝linuxmysql
Yesterday is a history, tomorrow is a mystery, but today is a gift.
前序
mysql 在樹莓派 raspberry pi 上的安裝和在 Linux 上的差不多,因為網上的教程只是記述了一部分且遇到了情況,就整理下來
安裝
- 因為不知道突然執行了什麼操作,然後系統執行什麼命令都要許可權了,都要加上 sudo 才能執行,這個看個人情況吧
- 更新軟體庫
sudo apt-get update
sudo apt-get install mysql-server
接下來就是安裝過程了,本來以為中間會提示輸入密碼,結果一口氣就安裝完了,想到該怎麼登陸啊
sudo mysql -u root
Welcome to the MariaDB monitor. Commands end with ; or \g.Your MariaDB connection id is 6Server version: 10.1.23-MariaDB-9+deb9u1 Raspbian 9.0Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others.Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.MariaDB [(none)]>
注:遇到陌生的 MariaDB,百科了發現是 mysql 的一個分支,完全繼承 mysql 的用法,所以也不擔心了,不過,這個應該是看個人情況的
# 資料庫中使用# 串連資料庫use mysql;# 修改密碼為123456,自己定UPDATE user SET password=PASSWORD(‘123456‘) WHERE user=‘root‘;# 重新整理flush privileges;# 退出exit;
sudo /etc/init.d/mysql status/start/stop/restart
總結
安裝之後需要修改密碼,不然密碼為空白
樹莓派 -- mysql 安裝