CentOS 6.5 安装MySQL数据库
Posted 随风浪子~
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 6.5 安装MySQL数据库相关的知识,希望对你有一定的参考价值。
CentOS 6.5 安装mysql数据库
[[email protected]~]# yum -y install mysql-server //安装命令 [[email protected]~]# service mysqld start //连接之前先启动服务 [[email protected]~]# chkconfig mysqld on //开机启动设置,也可以手动开启 [[email protected]~]# mysql -u root Welcome to the MySQL monitor. Commands end with ; or \g. ...... //安装成功之后密码为空,需要自己重新设置。 mysql> set password for root@localhost=password(‘root‘); mysql> exit //用新密码登陆 [[email protected]~]# mysql -u root -p //测试 show databases; //查看系统已存在的数据库 use test; //选择需要使用的数据库 exit //退出数据库的连接 其他命令: rpm -qa|grep mysql //显示已安装的mysql版本 也可以通过下载rpm软件包来安装mysql
以上是关于CentOS 6.5 安装MySQL数据库的主要内容,如果未能解决你的问题,请参考以下文章