问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

linux下怎么安装mysql数据库

发布网友 发布时间:2022-02-26 19:28

我来回答

2个回答

懂视网 时间:2022-02-26 23:49

产品型号: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:57

1、到mysql官网下载mysql编译好的二进制安装包,在下载页面Select Platform:选项选择linux-generic,然后把页面拉到底部,

64位系统下载Linux - Generic (glibc 2.5) (x86, 64-bit),32位系统下载Linux - Generic (glibc 2.5) (x86, 32-bit)

2、解压32位安装包:

进入安装包所在目录,执行命令:tar mysql-5.6.17-linux-glibc2.5-i686.tar.gz

3、复制解压后的mysql目录到系统的本地软件目录:

执行命令:cp mysql-5.6.17-linux-glibc2.5-i686 /usr/local/mysql -r

4、添加系统mysql组和mysql用户:

执行命令:groupadd mysql和useradd -r -g mysql mysql

5、安装数据库:

进入安装mysql软件目录:执行命令 cd /usr/local/mysql

修改当前目录拥有者为mysql用户:执行命令?chown -R mysql:mysql ./

安装数据库:执行命令?./scripts/mysql_install_db --user=mysql

修改当前目录拥有者为root用户:执行命令?chown -R root:root ./

修改当前data目录拥有者为mysql用户:执行命令?chown -R mysql:mysql data

到此数据库安装完毕

6、启动mysql服务和添加开机启动mysql服务:

添加开机启动:执行命令cp support-files/mysql.server /etc/init.d/mysql,把启动脚本放到开机初始化目录

启动mysql服务:执行命令service mysql start

执行命令:ps -ef|grep mysql 看到mysql服务说明启动成功

7、修改mysql的root用户密码,root初始密码为空的:

执行命令:./bin/mysqladmin -u root password '密码'

8、把mysql客户端放到默认路径:

ln -s /usr/local/mysql/bin/mysql /usr/local/bin/mysql

注意:建议使用软链过去,不要直接包文件复制,便于系统安装多个版本的mysql

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
电脑重装以后的漏洞是否需要修补? 你的电脑修复系统不用修复了吗电脑提示漏洞修复到底要不要修复 电脑系统重装漏调修复重要吗刚重装系统那些漏洞要修复吗win10_百度... 组装电脑系统漏洞可以修复吗电脑漏洞有必要修复吗 电脑新系统修复漏洞电脑提示漏洞修复到底要不要修复 韩国手机卡陷阱多多?一招教你完美避开所有坑! 东莞长安有哪几个区镇 东莞长安镇有哪几个村 东莞长安有哪些镇 东莞厦岗哪里有手工外发 linux里面安装mysql的方法! 华为mate20pro屏幕解锁后,没有通知但系统通知的铃声总是响一声 华为mate20pro 关闭充电提示音 如何将word中的回车符替换掉 华为mate20打开应用就有消息提示音怎么弄 怎么批量清除WPS/Word中的回车符? 如何在华为mate20pro设置提醒 华为mate20pro充电提示音怎么设置 在word里怎么把回车键的痕迹去掉 Word多余的换行符怎么批量删除 如何去除word的回车符 word里面怎么去掉回车键 word中回车符很多怎么才能快速删除 如何去掉WORD中多余的回车符方法 如何去掉WORD中的大量回车 微信升级改版后在哪里修改提示音啊,原来的新消息提醒打开也没有了,华为手机, Word怎么才能快速删除回车符 word中如何成批快速删除空行/回车符? 如何去掉word中的回车符 怎样在word中快速去掉每行的回车符 华为Mate20 Pro怎么设置视频来电? linux服务器上怎么安装mysql 华为mate20pro怎么设置晚上静音白天响铃模式呢 linux系统怎么安装mysql数据库 华为mate20pro屏幕解锁提示音怎么关闭? linux安装mysql的问题 华为mate20pro手机的短信如何显示在状态栏 华为mate20pro简易模式有铃音最大化吗? linux有mysql-lib包 怎么安装mysql 华为mate20pro在微信里播放音频的时候为什么老是出现系统提示音 华为mate20pro高级设置功能使用教程 华为mate20pro 如何关闭微信打字声音 华为mate20pro在微信里听音频的时候播放一暂停为什么老是响系统提示音 Word文档中文字下有红色或绿色波浪线如何去掉 华为mate20pro闹钟在哪里设置? 如何将word文档中文字下方的波浪线去掉? 在word文档时,文字下面出现一行波浪线怎么去除? word字体下面的波浪线怎么去掉 鸡胸肉酱汁怎么调 word下波浪线怎么取消