后台数据库配置
创建数据库
create database luffy default charset=utf8;
查看用户
# 5.7之前版本 select user,host,password from mysql.user; # 5.7往后的版本 select user,host,authentication_string from mysql.user;
创建用户
给数据库创建一个lqz用户,它只能操作luffy库---万一你的lqz用户密码泄露了--用于保护数据
# 授权账号命令:grant 权限(create, update) on 库.表 to '账号'@'host' identified by '密码' grant all privileges on luffy.* to 'lqz'@'%' identified by 'Luffy123?'; grant all privileges on luffy.* to 'lqz'@'localhost' identified by 'Luffy123?';
刷新权限
flush privileges;
项目配置文件
DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME': 'luffy', 'USER': 'lqz', 'PASSWORD': 'Luffy123?', 'HOST': 'localhost', 'PORT': 3306, } }