mysql怎么数据安装 mysql数据库的安装教程( 二 )


安装完mariadb-server后,运行mysql_secure_installation去除安全隐患,[root@xuegod63 ~]# mysql_secure_installation#进入安全配置导向 。
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQLSERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MySQL to secure it, we'll need the current,password for the root user. If you've just installed MySQL, and,you haven't set the root password yet, the password will be blank,,so you should just press enter here.Enter current password for root (enter for none):#初次运行直接回车,因为root用户没有密码 。
OK, successfully used password, moving on,Setting the root password ensures that nobody can log into the MySQL,root user without the proper authorisation.,Set root password? [Y/n] Y#是否设置root用户密码,输入Y 。
New password: 123456#新密码123456 , Re-enter new password: 123456,Password updated successfully!Remove anonymous users? [Y/n] Y#是否删除匿名用户,生产环境建议删除,所以直接回车或Y 。
Success!Normally, root should only be allowed to connect from 'localhost'.Thisensures that someone cannot guess at the root password from the network.Disallow root login remotely? [Y/n] Y#是否禁止root远程登录,根据自己的需求选择Y/n并回车建议禁止 。
Success!By default, MariaDB comes with a database named 'test' that anyone canaccess.This is also intended only for testing, and should be removedbefore moving into a production environment.Remove test database and access to it? [Y/n] Y#是否删除test数据库,直接回车或Y 。
Linux安装mysql数据库1、在opt目录里面新建两个文件夹
(1)mySoftware:用于存放软件安装包
(2)mysql:安装mysql的文件夹
2、解压mysql安装包:tar -xvf mysql-8.0.26-1.el7.x86_64.rpm-bundle.tar -C /opt/mysql
3、进入mysql目录,依次执行下面命令:
4、启动MySQL服务
(1)systemctl start mysqld:启动mysql服务器
(2)systemctl restart mysqld:重启mysql服务器
(3)systemctl stop mysqld:停止mysql服务器
5、查询自动生成的root用户密码
6、修改root用户密码
登录到MySQL之后,需要将自动生成的不便记忆的密码修改了,修改成自己熟悉的便于记忆的密码 。
ALTER USER 'root'@'localhost' IDENTIFIED BY '1234';
7、 默认的root用户只能当前节点localhost访问,是无法远程访问的,我们还需要创建一个root账户,用户远程访问
并给root用户分配权限
grant all on *.* to 'root'@'%';
mysql如何安装方法/步骤
1、下载安装文件,安装:双击Setup.exe文件,开始mysql的安装 。
2、点击Next开始下一步安装 。默认是Typical , 选择Custom,因为Typical模式不允许改变安装路径,只能安装在C盘
3、这里需要选择组件和更改文件夹位置,组件可以默认的,位置要选择Change来改变(注意:安装mysql的路径中 , 不能含有中文)
4、点击Install开始安装
5、安装完成 。
关于mysql怎么数据安装和mysql数据库的安装教程的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站 。

推荐阅读