发布网友 发布时间:2022-02-26 19:14
共7个回答
懂视网 时间:2022-02-26 23:36
产品型号:Thinkpad E15
系统版本:centos7
软件版本:mysql 5.7
mysql安装教程
1.使用yum安装mysql数据库的软件包
[root@xuegod63 ~]# yum -y install mariadb-server mariadb
注:
mariadb-server #MariaDB数据库
mariadb # MariaDB服务器Linux下客户端
注:从centos7系统开始,系统中自带的mysql数据库变成了mariadb-server,mariadb-server和mysql操作上一样。mariadb-server是mysql的一个分支。
2.启动数据库服务
[root@xuegod63 ~]# systemctl start mariadb #启动MariaDB服务
[root@xuegod63 ~]# systemctl enable mariadb #设置开启自动启动MariaDB服务
3. 安装完mariadb-server后,运行mysql_secure_installation去除安全隐患
[root@xuegod63 ~]# mysql_secure_installation #进入安全配置导向
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
SERVERS 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'. This
ensures 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 can
access. This is also intended only for testing, and should be removed
before moving into a production environment.
Remove test database and access to it? [Y/n] Y #是否删除test数据库,直接回车或Y
- Dropping test database...
... Success!
- Removing privileges on test database...
... Success!
Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.
Reload privilege tables now? [Y/n] Y #是否重新加载权限表,直接回车
... Success!
Cleaning up...
All done! If you've completed all of the above steps, your MariaDB
installation should now be secure.
Thanks for using MariaDB!
… Success!
至此数据库安装成功。
4. 登录数据库
[root@xuegod63 ~]# mysql -u root -p123456
MariaDB [(none)]> show databases; #没有test数据库 #执行时,所有命令以;号结尾
+-------------------------+
| Database |
+-------------------------+
| information_schema |
| mysql |
| ucenter |
+-------------------------+
3 rows in set (0.00 sec)
MariaDB [(none)]> exit #退出命令可以加分号,也可以不加分号。
总结:
1、使用yum安装mysql数据库的软件包
2、启动数据库服务
3、运行mysql_secure_installation去除安全隐患
4、登录数据库
热心网友 时间:2022-02-26 20:44
从MSQL官网下载MySQL服务器安装软件包,下面以mysql-installer-community-5.7.3.0-m13.msi为例。
1、双击进入安装
2、在协议许可(License Agreement)界面,勾选“I accept the license terms”,点击“Next”。
3、在检查更新信息(Find latest procts)界面,勾选“Skip the check for updates(no recommended)”跳过检查,然后点击“Next”。
4、在选择安装类型(Choosing a Setup Type)界面,根据安装需求选择安装类型(推荐默认开发版本),设置MySQL安装路径和数据存放路径,最后点击“Next”。
5、在检查要求(Check Requirements)界面,点击“Next”。
6、安装进度(Installation progress)界面,点击“Execute”执行。
7、等待安装进度完毕,点击“Next”。
8、进入配置概述(Configuration Overview)界面,点击“Next”。
9、在MySQL服务配置(MySQL Server Configuration)界面,默认不做修改,点击“Next”。
10、设置根账户(root账户)密码。
11、添加(非根)用户账户。其目的是便于数据库权限管理,为远程访问者提供安全账户。
12、默认windows服务配置不做修改,点击“Next”。
13、回到配置概述(Configuration Overview)界面,安装完毕点击“Next”。
14、MySQL安装完成(Installation Complete),点击“Finish”。
15、若勾选“安装后启动Mysql工作台”(Start Mysql Workbench after Setup),可见如下界面。
注意:MySQL环境变量配置。
在windows命令提示符中输入mysql,提示“mysql”不是内部或外部命令。只需将MySQL安装路径添加系统环境变量即可。
如安装路径为“D:\Program Files\MySQL”目录,则进入mysql server的bin目录下复制路径;其次在环境变量中编辑变量Path,变量值中输入“;”后粘贴“D:\Program Files\MySQL\MySQL Server 5.7\bin”路径,最后从新打开命令提示符窗口运行mysql即可。
热心网友 时间:2022-02-26 22:02
mysql数据库5.7安装的方法:首先进入浏览器,找到mysql数据库5.7下载,下载之后找到安装包保存的文件夹,点击进入,如果电脑的扫毒软件要选择信任,按照提示说明一步一步地安装,最后可以在电脑开始菜单栏中找到安装好的软件,既可以使用了。
1、进入浏览器,搜索Mysql5.7下载。
2、找到要安装的版本。
3、点击下载。
4、选择想要保存的位置。
5、电脑上的杀毒软件会阻止安装,这个时候应该添加信任。
6、信任之后就可以安装了。
7、等待插件安装完成。
8、在保存的文件里,双击插件,进入安装软件页面。
9、进入页面,点击Next。
10、勾选同意规则,点击Next。
11、一般自己使用的类型,都是选择Typical,所以点击标示。
12、进入页面,再点击Install。
13、等待安装MySQL 5.7。
14、点击Finish。
15、点击开始页面,拉出所有程序。
16、找到MySQL文件夹。
17、找到MYSQL Server 5.7文件夹。
18、点击软件,进行使用。
热心网友 时间:2022-02-26 23:53
如果是linux可以参考这篇文章:CentOS7安装mysql5.7
热心网友 时间:2022-02-27 02:01
win10安装MySQL8
网页链接
热心网友 时间:2022-02-27 04:26
http://jingyan.baidu.com/article/7e440953d6f0702fc1e2ef61.html热心网友 时间:2022-02-27 07:07
什么平台?