以前的Linux系统中数据库大部分是MysqL,不过自从被sun收购之后,就没用集成在centos这些开源Linux系统中了,那么如果想用的话就需要自己安装了,首先centos7 已经不支持MysqL,因为收费了你懂得,所以内部集成了mariadb,而安装MysqL的话会和mariadb的文件冲突,所以需要先卸载掉mariadb,以下为卸载mariadb,安装MysqL的步骤。

#列出所有被安装的rpm package
rpm -qa | grep mariadb

#卸载

rpm -e mariadb-libs-5.5.37-1.el7_0.x86_64

错误:依赖检测失败:
libMysqLclient.so.18()(64bit) 被 (已安裝) postfix-2:2.10.1-6.el7.x86_64 需要
libMysqLclient.so.18(libMysqLclient_18)(64bit) 被 (已安裝) postfix-2:2.10.1-6.el7.x86_64 需要

#强制卸载,因为没有--nodePS

rpm -e --nodeps mariadb-libs-5.5.37-1.el7_0.x86_64

#安装MysqL5.5.39的rpm包

rpm -ivh /home/liwei/MysqL-server-5.5.39-2.el6.x86_64.rpm

rpm -ivh /home/liwei/MysqL-client-5.5.39-2.el6.x86_64.rpm

#拷贝配置文件

cp /usr/share/MysqL/my-medium.cnf /etc/my.cnf,改名为my.cnf作为MysqL配置文件。

#修改响应的配置文件

vim/etc/my.cnf

#把MysqL的data拷贝到制定的目录

mv /var/lib/MysqL /home/MysqL/data/

还要注意目录的属主和权限。

MysqL启动后报:ERROR! The server quit without updating PID file错误的问题解决

1、权限不够:chown -R MysqL:MysqL /home/MysqL/data” “chmod -R 755 /home/MysqL/data

2、centos7的selinux问题:打开/etc/selinux/config,把SELINUX=enforcing改为SELINUX

centos7 安装 mariadb 的正确命令

使用的是linode的centos7系统,安装MysqL发现已经默认的是mariadb。

但是不管是使用linode官网说明还是百度搜索到的的根本安装方法无法安装成功。

总是提示这一句:

ERROR 2002 (HY000): Can't connect to local Mysql serverthrough socket '/var/lib/MysqL/MysqL.sock' (2)

最后通过google 搜索 install mariadb on centos 7得到了安装的关键一步。

现在安装成功,特此备注一下整个安装过程:

[PHP] view plaincopy在CODE上查看代码片派生到我的代码片

MysqL:[root@localhost ~]# yum -y install mariadb*

Loaded plugins: fastestmirror

Loading mirror speeds from cached hostfile

* base: mirrors.linode.com

* extras: mirrors.linode.com

* updates: mirrors.linode.com

Resolving Dependencies

--> Running transaction check

---> Package mariadb.x86_64 1:5.5.37-1.el7_0 will be installed

---> Package mariadb-bench.x86_64 1:5.5.37-1.el7_0 will be installed

---> Package mariadb-devel.x86_64 1:5.5.37-1.el7_0 will be installed

---> Package mariadb-embedded.x86_64 1:5.5.37-1.el7_0 will be installed

---> Package mariadb-embedded-devel.x86_64 1:5.5.37-1.el7_0 will be installed

---> Package mariadb-libs.x86_64 1:5.5.37-1.el7_0 will be installed

---> Package mariadb-server.x86_64 1:5.5.37-1.el7_0 will be installed

--> Processing Dependency: perl-dbd-mysql for package: 1:mariadb-server-5.5.37-1.el7_0.x86_64

---> Package mariadb-test.x86_64 1:5.5.37-1.el7_0 will be installed

---> Package perl-dbd-mysql.x86_64 0:4.023-5.el7 will be installed

--> Finished Dependency Resolution

Dependencies Resolved

==========================================================================================================

Package Arch Version Repository Size

Installing:

mariadb x86_64 1:5.5.37-1.el7_0 updates 8.9 M

mariadb-bench x86_64 1:5.5.37-1.el7_0 updates 385 k

mariadb-devel x86_64 1:5.5.37-1.el7_0 updates 744 k

mariadb-embedded x86_64 1:5.5.37-1.el7_0 updates 3.6 M

mariadb-embedded-devel x86_64 1:5.5.37-1.el7_0 updates 7.4 M

mariadb-libs x86_64 1:5.5.37-1.el7_0 updates 752 k

mariadb-server x86_64 1:5.5.37-1.el7_0 updates 11 M

mariadb-test x86_64 1:5.5.37-1.el7_0 updates 7.9 M

Installing for dependencies:

perl-dbd-mysql x86_64 4.023-5.el7 base 140 k

Transaction Summary

Install 8 Packages (+1 Dependent package)

Total download size: 40 M

Installed size: 279 M

Downloading packages:

(1/9): mariadb-bench-5.5.37-1.el7_0.x86_64.rpm | 385 kB 00:00:00

(2/9): mariadb-devel-5.5.37-1.el7_0.x86_64.rpm | 744 kB 00:00:00

(3/9): mariadb-embedded-5.5.37-1.el7_0.x86_64.rpm | 3.6 MB 00:00:00

(4/9): mariadb-5.5.37-1.el7_0.x86_64.rpm | 8.9 MB 00:00:00

(5/9): mariadb-libs-5.5.37-1.el7_0.x86_64.rpm | 752 kB 00:00:00

(6/9): mariadb-server-5.5.37-1.el7_0.x86_64.rpm | 11 MB 00:00:00

(7/9): mariadb-embedded-devel-5.5.37-1.el7_0.x86_64.rpm | 7.4 MB 00:00:00

(8/9): mariadb-test-5.5.37-1.el7_0.x86_64.rpm | 7.9 MB 00:00:00

(9/9): perl-dbd-mysql-4.023-5.el7.x86_64.rpm | 140 kB 00:00:00

----------------------------------------------------------------------------------------------------------

Total 36 MB/s | 40 MB 00:00:01

Running transaction check

Running transaction test

Transaction test succeeded

Running transaction

Installing : 1:mariadb-libs-5.5.37-1.el7_0.x86_64 1/9

Installing : 1:mariadb-5.5.37-1.el7_0.x86_64 2/9

Installing : perl-dbd-mysql-4.023-5.el7.x86_64 3/9

Installing : 1:mariadb-server-5.5.37-1.el7_0.x86_64 4/9

Installing : 1:mariadb-devel-5.5.37-1.el7_0.x86_64 5/9

Installing : 1:mariadb-embedded-5.5.37-1.el7_0.x86_64 6/9

Installing : 1:mariadb-embedded-devel-5.5.37-1.el7_0.x86_64 7/9

Installing : 1:mariadb-test-5.5.37-1.el7_0.x86_64 8/9

Installing : 1:mariadb-bench-5.5.37-1.el7_0.x86_64 9/9

Verifying : 1:mariadb-test-5.5.37-1.el7_0.x86_64 1/9

Verifying : 1:mariadb-embedded-devel-5.5.37-1.el7_0.x86_64 2/9

Verifying : 1:mariadb-embedded-5.5.37-1.el7_0.x86_64 3/9

Verifying : 1:mariadb-libs-5.5.37-1.el7_0.x86_64 4/9

Verifying : 1:mariadb-bench-5.5.37-1.el7_0.x86_64 5/9

Verifying : 1:mariadb-5.5.37-1.el7_0.x86_64 6/9

Verifying : 1:mariadb-server-5.5.37-1.el7_0.x86_64 7/9

Verifying : perl-dbd-mysql-4.023-5.el7.x86_64 8/9

Verifying : 1:mariadb-devel-5.5.37-1.el7_0.x86_64 9/9

Installed:

mariadb.x86_64 1:5.5.37-1.el7_0 mariadb-bench.x86_64 1:5.5.37-1.el7_0

mariadb-devel.x86_64 1:5.5.37-1.el7_0 mariadb-embedded.x86_64 1:5.5.37-1.el7_0

mariadb-embedded-devel.x86_64 1:5.5.37-1.el7_0 mariadb-libs.x86_64 1:5.5.37-1.el7_0

mariadb-server.x86_64 1:5.5.37-1.el7_0 mariadb-test.x86_64 1:5.5.37-1.el7_0

Dependency Installed:

perl-dbd-mysql.x86_64 0:4.023-5.el7

Complete!

[root@localhost ~]# systemctl start mariadb.service

[root@localhost ~]# systemctl enable mariadb.service

ln -s '/usr/lib/systemd/system/mariadb.service' '/etc/systemd/system/multi-user.target.wants/mariadb.servi

ce'

[root@localhost ~]# MysqL

Welcome to the MariaDB monitor. Commands end with ; or \g.

Your MariaDB connection id is 2

Server version: 5.5.37-MariaDB MariaDB Server

copyright (c) 2000,2014,Oracle,Monty Program Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> logout

-> exit

->

-> ;

ERROR 1064 (42000): You have an error in your sql Syntax; check the manual that corresponds to your MariaD

B server version for the right Syntax to use near 'logout

exit' at line 1

MariaDB [(none)]> exit


Bye

Your MariaDB connection id is 3

MariaDB [(none)]> show databases;

+--------------------+

| Database |

| information_schema |

| MysqL |

| performance_schema |

| test |

4 rows in set (0.00 sec)

MariaDB [(none)]> use test

Database changed

MariaDB [test]> show tables;

Empty set (0.00 sec)

MariaDB [test]> exit

[root@localhost ~]# MysqL_secure_installation

/usr/bin/MysqL_secure_installation: line 379: find_MysqL_client: command not found

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB

SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!

In order to log into MariaDB to secure it,we'll need the current

password for the root user. If you've just installed MariaDB,and

you haven't set the root password yet,the password will be blank,

so you should just press enter here.

ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)

Enter current password for root (enter for none):

OK,successfully used password,moving on...

Setting the root password ensures that nobody can log into the MariaDB

root user without the proper authorisation.

Set root password? [Y/n] y

New password:

Re-enter new password:

Password updated successfully!

Reloading privilege tables..

... Success!

By default,a MariaDB installation has an anonymous user,allowing anyone

to log into MariaDB without having to have a user account created for

them. This is intended only for testing,and to make the installation

go a bit smoother. You should remove them before moving into a

production environment.

Remove anonymous users? [Y/n] y

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

ottom:22px; text-indent:2em; color:rgb(51,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

- Dropping test database...

- Removing privileges on test database...

Reloading the privilege tables will ensure that all changes made so far

will take effect immediately.

Reload privilege tables Now? [Y/n] y

Cleaning up...

All done! If you've completed all of the above steps,your MariaDB

installation should Now be secure.

Thanks for using MariaDB!

[root@localhost ~]# MysqL -uroot -p

Enter password:

Your MariaDB connection id is 15

| zbPHP.com |

MariaDB [(none)]>

centos 7安装mysql5.5和安装 mariadb 的正确命令的更多相关文章

  1. 从iOS应用程序发送帖子到PHP脚本不工作…简单的解决方案就像

    我之前已经做了好几次了但是由于某些原因我无法通过这个帖子…我尝试了设置为_POST且没有的变量的PHP脚本……当它们未设置为发布时它工作精细.这是我的iOS代码:这里是PHP的一大块,POST变量不在正确的位置?我想这对于更有经验的开发人员来说是一个相当简单的答案,感谢您的帮助!解决方法$_POST是一个数组,而不是一个函数.您需要使用方括号来访问数组索引:

  2. Android – 将SQLite与MySQL同步的最佳方式

    参见英文答案>Synchronizingclient-serverdatabases5个我正在开发一个包含网络应用和移动应用程序的项目,该应用程序记录每日用户的数据.用户可以删除,更新他们的数据,他们可以使用许多设备插入数据.我打算这样开发:用户输入他们的数据然后插入sqlite.服务将定期启动(每5小时或每小时)以使用时间戳与MysqL同步.我确实在互联网上使用服务和时间戳搜索了一个样本,但我一

  3. android – 如何将唯一的GCM注册标识存储到MySQL中

    我正在设置GoogleCloudMessaging机制的服务器端,使用MySQL存储移动应用提供的注册ID.Google可以发出最多4k个注册码,我被迫将其存储在TEXT字段中.所有的好,到目前为止,问题是我必须处理这样的情况:>用户登录到应用程序>该应用从google请求注册ID>应用程序将新的注册ID发送到应用服务器>服务器存储该注册ID并将其链接到当前登录的用户>该用户注销并且新用户登录>应

  4. CentOS 8.2服务器上安装最新版Node.js的方法

    这篇文章主要介绍了CentOS 8.2服务器上安装最新版Node.js的方法,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

  5. nodeJs链接Mysql做增删改查的简单操作

    本篇文章主要介绍了nodeJs链接Mysql做增删改查的简单操作,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

  6. PHP连接MYSQL数据库的3种常用方法

    这篇文章主要介绍了PHP连接MYSQL数据库的3种常用方法,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

  7. PHP使用PDO创建MySQL数据库、表及插入多条数据操作示例

    这篇文章主要介绍了PHP使用PDO创建MySQL数据库、表及插入多条数据操作,结合实例形式总结分析了php基于pdo的mysql数据库创建、数据表创建以及多条数据插入操作相关实现技巧,需要的朋友可以参考下

  8. MybatisPlus如何处理Mysql的json类型

    这篇文章主要介绍了MybatisPlus如何处理Mysql的json类型,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教

  9. 基于PHP+mysql实现新闻发布系统的开发

    这篇文章主要介绍了基于PHP+mysql实现新闻发布系统的开发,文章通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

  10. nodejs操作mysql实现增删改查的实例

    下面小编就为大家带来一篇nodejs操作mysql实现增删改查的实例。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧

随机推荐

  1. 在airgapped(离线)CentOS 6系统上安装yum软件包

    我有一个CentOS6系统,出于安全考虑,它已经被空气泄漏.它可能从未连接到互联网,如果有,它很长时间没有更新.我想将所有.rpm软件包放在一个驱动器上,这样它们就可以脱机安装而无需查询互联网.但是,我在测试VM上遇到的问题是,即使指定了本地路径,yum仍然会挂起并尝试从在线存储库进行更新.另外,有没有办法使用yum-utils/yumdownloader轻松获取该包的所有依赖项和所有依赖项?目前

  2. centos – 命名在日志旋转后停止记录到rsyslog

    CentOS6.2,绑定9.7.3,rsyslog4.6.2我最近设置了一个服务器,我注意到在日志轮换后,named已停止记录到/var/log/messages.我认为这很奇怪,因为所有日志记录都是通过rsyslog进行的,并且named不会直接写入日志文件.这更奇怪,因为我在更新区域文件后命名了HUPed,但它仍然没有记录.在我停止并重新启动命名后,记录恢复.这里发生了什么?

  3. centos – 显示错误的磁盘大小

    对于其中一个磁盘,Df-h在我的服务器上显示错误的空白区域:Cpanel表明它只有34GB免费,但还有更多.几分钟前,我删除了超过80GB的日志文件.所以,我确信它完全错了.fdisk-l/dev/sda2也显示错误:如果没有格式化,我该怎么做才能解决这个问题?并且打开文件描述符就是它需要使用才能做到这一点.所以…使用“lsof”并查找已删除的文件.重新启动写入日志文件的服务,你很可能会看到空间可用.

  4. 如何在centos 6.9上安装docker-ce 17?

    我目前正在尝试在centOS6.9服务器上安装docker-ce17,但是,当运行yuminstalldocker-ce时,我收到以下错误:如果我用跳过的标志运行它我仍然得到相同的消息,有没有人知道这方面的方法?

  5. centos – 闲置工作站的异常负载平均值

    我有一个新的工作站,具有不寻常的高负载平均值.机器规格是:>至强cpu>256GB的RAM>4x512GBSSD连接到LSI2108RAID控制器我从livecd安装了CentOS6.564位,配置了分区,网络,用户/组,并安装了一些软件,如开发工具和MATLAB.在启动几分钟后,工作站负载平均值的值介于0.5到0.9之间.但它没有做任何事情.因此我无法理解为什么负载平均值如此之高.你能帮我诊断一下这个问题吗?

  6. centos – Cryptsetup luks – 检查内核是否支持aes-xts-plain64密码

    我在CentOS5上使用cryptsetupluks加密加密了一堆硬盘.一切都很好,直到我将系统升级到CentOS6.现在我再也无法安装磁盘了.使用我的关键短语装载:我收到此错误:在/var/log/messages中:有关如何装载的任何想法?找到解决方案问题是驱动器使用大约512个字符长的交互式关键短语加密.出于某种原因,CentOS6中的新内核模块在由旧版本创建时无法正确读取512个字符的加密密钥.似乎只会影响内核或cryptsetup的不同版本,因为在同一系统上创建和打开时,512字符的密钥将起作用

  7. centos – 大量ssh登录尝试

    22个我今天登录CentOS盒找到以下内容这是过去3天内的11次登录尝试.WTF?请注意,这是我从我的提供商处获得的全新IP,该盒子是全新的.我还没有发布任何关于此框的内容.为什么我会进行如此大量的登录尝试?是某种IP/端口扫描?基本上有4名匪徒,其中2名来自中国,1名来自香港,1名来自Verizon.这只发生在SSH上.HTTP上没有问题.我应该将罪魁祸首子网路由吗?你们有什么建议?

  8. centos – kswap使用100%的CPU,即使有100GB的RAM也可用

    >Linux内核是否应该足够智能,只需从内存中清除旧缓存页而不是启动kswap?

  9. centos – Azure将VM从A2 / 3调整为DS2 v2

    我正在尝试调整前一段时间创建的几个AzureVM,从基本的A3和标准A3到标准的DS2v2.我似乎没有能力调整到这个大小的VM.必须从头开始重建服务器会有点痛苦.如果它有所不同我在VM中运行CentOS,每个都有一个带有应用程序和操作系统的磁盘.任何人都可以告诉我是否可以在不删除磁盘的情况下删除VM,创建新VM然后将磁盘附加到新VM?

  10. centos – 广泛使用RAM时服务器计算速度减慢

    我在非常具体的情况下遇到服务器速度下降的问题.事实是:>1)我使用计算应用WRF>2)我使用双XeonE5-2620v3和128GBRAM(NUMA架构–可能与问题有关!

返回
顶部