樹莓派 -- mysql 安裝

來源:互聯網
上載者:User

標籤: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
  • 安裝 mysql
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 安裝

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.