树莓派安装Mariadb数据库
1. 更新系统
在安装Mariadb数据库之前,先更新系统
sudo apt update -y
sudo apt upgrade -y
2. 安装Mariadb
安装命令如下:
sudo apt install mariadb-server -y
查看服务状态:
sudo systemctl status mariadb
结果如下即为安装成功
3. 配置Mariadb
运行以下命令进行配置:
sudo mysql_secure_installation
- Enter current password for root (enter for none):直接按回车
- Switch to unix_socket authentication [Y/n]:y 回车
- Change the root password? [Y/n]:y 回车
- New password: 输入你要设置的密码,输入完按回车
- Re-enter new password: 确认密码,输入完按回车
- Remove anonymous users? [Y/n]: y 回车
- Disallow root login remotely? [Y/n]: n 回车
- Remove test database and access to it? [Y/n]:n回车
- Reload privilege tables now? [Y/n]:y 回车
4. 登录Mariadb
运行以下命令登录Mariadb:
mysql -u root -p
输入刚刚设置的密码即可登录,登录成功如下图
5. 远程连接
- 修改配置
sudo vim /etc/mysql/mariadb.conf.d/50-server.cnf
- 重启服务
sudo systemctl restart mariadb
- 开放远程连接(这里以root用户为例,第一个root代表用户,第二个root代表密码)
登录mariadb后,执行如下命令:GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;
- 刷新权限
FLUSH PRIVILEGES;
- 使用工具验证
本文来自博客园,作者:sunshine-sm,转载请注明原文链接:https://www.cnblogs.com/sunshine-sm/p/18030727