1. 首先更新我们树莓派的软件
sudo
apt-get update
2. 等待更新完毕后安装mysql服务
sudo
apt-get
install
mysql-server
3.
安装过程中需要输入两次 mysql 中 root 的登录密码
安装成功后使用以下命令登录mysql
mysql -u root -p
4. 登录成功后如果需要开启mysql远程连接,运行如下命令,给root用户添加远程访问权限
mysql> GRANT ALL PRIVILEGES ON *.* TO
'root'``@``'%'
IDENTIFIED BY
'123456'
WITH GRANT OPTION
mysql> flush privileges
5. 树莓派mysql默认只监听本地ip访问,如果需要远程IP访问还需要修改 /etc/mysql/my.cnf
vi
/etc/mysql/my``.cnf
6. 找到
# Instead of skip-networking the default is now to listen only on
# localhost which is more compatible and is not less secure.
bind-address = 127.0.0.1
把 127.0.0.1 改成 0.0.0.0 就可以远程访问了。
到这里我们的mysql 安装就算完成了,登录mysql后的具体操作与其他系统版本的操作相同,这里就不阐述了!