搭建本地mysql测试数据库



为避免项目开发过程中直接使用云数据库带来的安全问题,需在本地装一个测试库

  1. 安装contOS 7 虚拟机         CentOS-7-x86_64-Everything-1611.iso
  2. 配置yum源

vim /etc/yum.repos.d/base.repo

内容为:

[base]   ——-源标识

name=base ——源名称

baseurl=file:///mnt/

enable=1

gpgcheck=0

挂载/dev/sr0 /mnt                   将系统的镜像文件挂载到/mnt目录下 供yum使用

 

3.安装 mariadb

#安装数据库

yum install mariadb mariadb-server -y

#启动数据库

systemctl start mariadb

systemctl enable mariadb   开机自启

#初始化数据库

mysql_secure_installation                   设置密码,及进行一些安全设置

 

4.创建数据库

create database test

 

创建用户并赋予权限

create user test identified by’123456′

GRANT ALL PRIVILEGES ON test.* TO test@’%’

5.关闭服务器防火墙

systemctl stop firewalld.service

systemctl disable firewalld.service

你可能感兴趣的:(搭建本地mysql测试数据库)