博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
center os7 安装mysql
阅读量:5215 次
发布时间:2019-06-14

本文共 1580 字,大约阅读时间需要 5 分钟。

安装mariadb

MariaDB数据库管理系统是MySQL的一个分支,主要由开源社区在维护,采用GPL授权许可。开发这个分支的原因之一是:甲骨文公司收购了MySQL后,有将MySQL闭源的潜在风险,因此社区采用分支的方式来避开这个风险。MariaDB的目的是完全兼容MySQL,包括API和命令行,使之能轻松成为MySQL的代替品。

安装mariadb,大小59 M。

[root@yl-web yl]# yum install mariadb-server mariadb

mariadb数据库的相关命令是:

systemctl start mariadb  #启动MariaDB

systemctl stop mariadb  #停止MariaDB

systemctl restart mariadb  #重启MariaDB

systemctl enable mariadb  #设置开机启动

所以先启动数据库

[root@yl-web yl]# systemctl start mariadb

然后就可以正常使用mysql了

[root@yl-web yl]# mysql -u root -pEnter password: Welcome to the MariaDB monitor.  Commands end with ; or \g.Your MariaDB connection id is 3Server version: 5.5.41-MariaDB MariaDB ServerCopyright (c) 2000, 2014, Oracle, MariaDB Corporation Ab and others.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.MariaDB [(none)]> show databases;+--------------------+| Database           |+--------------------+| information_schema || mysql              || performance_schema || test               |+--------------------+4 rows in set (0.00 sec)MariaDB [(none)]>

安装mariadb后显示的也是 MariaDB [(none)]> 

 

卸载mysql:

  1. [root@localhost usr]# yum remove mysql mysql-server mysql-libs compat-mysql51  
  2. [root@localhost usr]# rm -rf /var/lib/mysql  
  3. [root@localhost usr]# rm /etc/my.cnf  

 

方式2(mysql ):

官网下载安装mysql-server

# wget http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm# rpm -ivh mysql-community-release-el7-5.noarch.rpm# yum install mysql-community-server 默认安装完没有密码 use mysql
set password for 'root'@'localhost' =password('password');设置mysql登录密码

转载于:https://www.cnblogs.com/coderdxj/p/7518851.html

你可能感兴趣的文章
ES5和es6的封装继承
查看>>
call和apply区别
查看>>
Vue2路由鉴权
查看>>
网络请求返回HTTP状态码(404,400,500)
查看>>
智表ZCELL产品发布企业版
查看>>
html表格中的tr td th用法
查看>>
【前端node.js框架】node.js框架express
查看>>
免费10分钟邮箱上线啦~~
查看>>
matlab实现不动点迭代、牛顿法、割线法
查看>>
20-MySQL-Ubuntu-数据表的查询-子查询(九)
查看>>
第26月第18天 mybatis_spring_mvc
查看>>
LeetCode 16. 3Sum Closest
查看>>
将文本文件中的\n字符串变成换行符
查看>>
如何在博客园设置自己的头像
查看>>
NIO选择器学习笔记
查看>>
Nginx配置upstream实现负载均衡1
查看>>
“ipconfig不是内部命令或外部命令”解决方法
查看>>
linux cron定时任务初级使用教程
查看>>
(C#控件)MessageBox
查看>>
Excel:写入Excel-单纯写入
查看>>