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

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

一、查看mysql版本

yum list | grep mysql

二、安装mysql

yum install -y mysql-server mysql mysql-deve
Installed:  mysql.x86_64 0:5.1.73-8.el6_8                                                              mysql-server.x86_64 0:5.1.73-8.el6_8                                                             Dependency Installed:  perl.x86_64 4:5.10.1-144.el6                   perl-DBD-MySQL.x86_64 0:4.013-3.el6           perl-DBI.x86_64 0:1.609-4.el6             perl-Module-Pluggable.x86_64 1:3.90-144.el6          perl-Pod-Escapes.x86_64 1:1.04-144.el6         perl-Pod-Simple.x86_64 1:3.13-144.el6         perl-libs.x86_64 4:5.10.1-144.el6         perl-version.x86_64 3:0.77-144.el6                 Dependency Updated:  mysql-libs.x86_64 0:5.1.73-8.el6_8                                                                                                                                                           Complete!

三、启动mysql服务

service mysqld start
Please report any problems with the /usr/bin/mysqlbug script!                                                           [  OK  ]Starting mysqld:                                           [  OK  ]

四、设置开机启动

chkconfig mysqld on

五、查看是否开机启动

chkconfig --list | grep mysqld
mysqld             0:off    1:off    2:on    3:on    4:on    5:on    6:off

六、设计root密码

/usr/bin/mysqladmin -u root password 'qwerzxcv'

七、登录数据库

mysql -u root -p
Enter password: Welcome to the MySQL monitor.  Commands end with ; or \g.Your MySQL connection id is 3Server version: 5.1.73 Source distributionCopyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.mysql>

八、centos7安装mysql

  • 在安装前执行命令:
sudo rpm -Uvh
  • 然后正常安装mysql

转载地址:http://ozgjx.baihongyu.com/

你可能感兴趣的文章
LVS负载均衡(5)——LVS+Keepalived
查看>>
转发接口或下一跳网关的使用情况
查看>>
Windows Phone 8 常用UI控件 (一)
查看>>
CSS渐变色效果的实现方法与效果演示
查看>>
Sort如何进行排序,如何根据出现次数取IP
查看>>
fedora15 ubuntu 11.04
查看>>
composer遇到Your configuration does not allow connection to http://的问题怎么解决
查看>>
Cobbler-CentOS6.7-无人值守安装
查看>>
我的友情链接
查看>>
Python装饰器(Decorate)使用图解
查看>>
簡單使用 tcpdump GNU Linux 範例
查看>>
飞机大战源码
查看>>
Hadoop2.7.3+HBase1.2.5+ZooKeeper3.4.6搭建分布式集群环境
查看>>
LINUX-DHCP中继-超级作用域
查看>>
如何建立域信任关系
查看>>
pycharm license activation
查看>>
java异常机制 及 浅谈嵌套try-catch
查看>>
基于 Node.js 的轻量「持续集成」工具 CIZE
查看>>
命令行下:git远程操作,可以不用每次都输入用户名和密码,你知道么?
查看>>
在华为HG255D路由器上刷了OpenWRT,实现了多拨,下载速度超快
查看>>