Download presentation
Presentation is loading. Please wait.
Published byVeronika Agusalim Modified 6年之前
1
学习目标 www.quzixueba.com去自学吧系统教程之Mysql小白入门教程
1、Linux(这里用的是Centos)下mysql5.7的基本安装 2、课后习题
2
Linux下安装Mysql https://dev.mysql.com/downloads/mysql/
Linux下载:wget Windows下可以下载好以后用SFtp传上去 这里用到的Linux的是Centos,相关的环境搭建在 1、先确保Linux有网。 2、先安装好自动化安装组件:yum install -y perl-Module-Install.noarch 3、看下/etc/my.cnf的基本配置 4、解压缩后用yum批量安装 tar xvf *tar 然后删除里面的server-minimal包 如rm mysql-community-server-minimal el7.x86_64.rpm yum install -y mysql-community-*rpm
3
Linux下安装Mysql 5、关闭selinux
setenforce 0还有/etc/sysconfig/selinux里disabled vi操作是 6、mysql_install_db --datadir=/var/lib/mysql --user=mysql 7、启动mysql后登陆,默认密码是在/root/.mysql_secret 启动:systemctl start mysqld 重启:systemctl restart mysqld 开机启动:systemctl enable mysqld 8、登陆上去改root密码 SET PASSWORD = PASSWORD('123456'); update mysql.user set authentication_string=password('123456') where user='root'; flush privileges;
4
课后练习 Centos下安装mysql5.7且验证安装成功,把密码改成自己好记的密码
5
谢谢观看 PPT下载: 自学QQ群:
Similar presentations