Linux安装数据库
●为了能够更好的模拟真实的开发环境,建议将MySQL安装在linux系统上,以此来模拟公式的数据库服务器
1、利用工具链接到Linux系统
2、上传linux的MySQL的安装包
3、解压MySQL的安装包
mkdir mysql
tar -xvf mysql-5.7.27-1.e17.x86_84.rpm-bundle.tar -C mysql/
4、安装客户端
cd /mysql
rpm -ivh mysql-community-client-5.7.27-1.e17.x86_64.rpm --force --nodeps
5、安装服务端
rpm -ivh mysql -community-server-5.7.27-1.e17.x86_ 64.rpm --force --nodeps
6、修改mysql默认字符集
vi /etc/my.cnf
添加如下内容:
[mysqld]
character- server=utr8
collation-server=utf8_general_ci
– 在文件最下方添加
[client]
default-character-set=utf8
7、启动mysql服务
service mysql start
8、登录mysql
初始密码查看:cat /var/log/mysqld.log
在root@localhost: 后面就是初始密码
mysql -u root -p 回车,输入密码回车
出现 :Welcome to zhe MySQL monitor 之后代表登录成功
9、修改mysql登录密码
set global validate_ password. policy=0;
set global validate_ password_ 1ength=1;
set password=password(‘自己设置的密码’);
10、授权远程连接权限
//授权
grant all privileges on . to ‘root’ @’%’ identified by ‘itheima’;
//刷新
flush privileges;
11、关闭linux系统防火墙
systemctl stop forewalld
12、重启mysql服务器
service mysqld restart
13、使用navicat链接mysql
输入主机地址:linux的IP地址
用户名:root
密码:自己设置的密码
端口号:3306(默认)