搜索

win10下mysql 8.0.16 winx安装配置方法图文教程

发布网友 发布时间:2022-03-20 19:33

我来回答

2个回答

懂视网 时间:2022-03-20 23:54

产品型号: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-03-20 21:02

本文记录了mysql
8.0.16
winx安装配置的具体方法,具体内容如下
mysql
最新安装包下载地址
安装包解压之后就是这样了如下:可以随意放入其他文件夹下
解压到C盘后会有一个文件名为C:\Program
Files\mysql-8.0.16-winx的文件,点击进入查看该文件夹下的子目录如下:
windows系统下调出cmd黑窗口,提示最好用管理员身份打开,
在命令行模式下进入刚刚MYSQL的安装目录中的子目录bin,C:\Program
Files\mysql-8.0.16-winx\bin目录下,如图:
然后在C:\Program
Files\mysql-8.0.16-winx\bin目录下输入安装命令
mysqld
-install,比较简单我就不截图了 ,假如有报错请用管理员身份打开黑窗口.
执行之会在MYSQL的解压目录C:\Program
Files\mysql-8.0.16-winx下生成一个data的文件夹,里面有一个后缀名为.err结尾的文件,这个文件中包含着初次使用MYSQL时生成的一个临时用随机密码。以记事本方式打开这个.err文件你可以找到随机密码,
(root@localhost:
'密码') ,
还可以
执行
mysqld
--initialize
--console 随机生成密码,会打印到控制台,找地方存下来
然后配置一下MYSQL的启动文件,在MYSQL的解压目录C:\Program
Files\mysql-8.0.16-winx下新建一个.ini格式文件my.ini,然后以记事本格式打开写入下面代码:只复制粘贴
保存
注意你的路径要改下
[mysqld]
#
设置3306端口
port=3306
#
设置mysql的安装目录
basedir=C:\Program
Files\mysql-8.0.16-winx
#
数据库的数据的存放目录(这个Data目录千万不要手动创建,否则报错)
datadir=C:\Program
Files\mysql-8.0.16-winx\Data
#
允许最大连接数
max_connections=200
#
允许连接失败的次数。这是为了防止有人从该主机试图攻击数据库系统
max_connect_errors=10
#
服务端使用的字符集默认为UTF8
character-set-server=utf8
#
创建新表时将使用的默认存储引擎
default-storage-engine=INNODB
#
默认使用“mysql_native_password”插件认证
default_authentication_plugin=mysql_native_password
[mysql]
#
设置mysql客户端默认字符集
default-character-set=utf8
[client]
#
设置mysql客户端连接服务端时默认使用的端口
port=3306
default-character-set=utf8
然后再bin目录下输入下面命令:
mysqld
-install
服务名称(自定义,可以用mysql8,
mysql)
启动服务:
net
start
mysql
登陆MySQL:
密码就是上面的随机密码
mysql
-u
root
-p
1
修改密码: 1
用不了有用2,两者选一个(新版用2才可以)
set
password
for
root@localhost=password('密码');
2
修改密码:
alter
user
'root'@'localhost'
identified
by
'密码';
最后配置环境变量
精彩专题分享:
mysql不同版本安装教程
mysql5.7各版本安装教程
mysql5.6各版本安装教程
mysql8.0各版本安装教程
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
您可能感兴趣的文章:Win10下免安装版MySQL8.0.16的安装和配置教程图解mysql
8.0.16
winx.zip安装配置方法图文教程mysql
8.0.16
压缩包安装配置方法图文教程win10下mysql
8.0.16
winx安装图文最新教程mysql
installer
community
8.0.16.0安装配置图文教程Windows10下mysql
8.0.16
安装配置方法图文教程windows下mysql
8.0.16
安装配置方法图文教程CentOS7下mysql
8.0.16
安装配置方法图文教程mysql
8.0.16
winx安装配置方法图文教程mysql
8.0.16
Win10
zip版本安装配置图文教程
声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com
Top