yum安装mysql数据库

作者: 皇阿玛PLUS | 来源:发表于2017-04-06 10:31 被阅读64次
1.安装MySQL
  [root@example03 ~]# yum -y install mysql mysql-server mysql-devel
2.mysql开机自动启动
  [root@example03 ~]# chkconfig mysqld on
3.启动mysql服务
  [root@example03 ~]# service mysqld start
4.调整防火墙,允许3306端口访问
  [root@example03 ~]# vim /etc/sysconfig/iptables
  -A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT

  [root@example03 ~]# service iptables restart
5.设置mysql数据库的root用户密码
  [root@example03 ~]# mysqladmin -u root password 'mypassword'
6.授权root账户远程访问mysql
  [root@example03 conf.d]# mysql -u root -p

查看mysql中当前有哪些数据库

  mysql> SHOW DATABASES;
  +--------------------+
  | Database           |
  +--------------------+
  | information_schema |
  | mysql              |
  | test               |
  +--------------------+
  3 rows in set (0.00 sec)

为root用户授权可以在任意主机上访问mysql数据库(可选操作)

  mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'mypassword' WITH GRANT OPTION;
  Query OK, 0 rows affected (0.00 sec)

刷新权限

  mysql> FLUSH PRIVILEGES;
  Query OK, 0 rows affected (0.00 sec)

退出

  mysql> exit
  Bye

补充

1.查看mysql的版本:

  [root@example03 ~]# mysql --version
  mysql  Ver 14.14 Distrib 5.1.73, for redhat-linux-gnu (x86_64) using readline 5.1

通过查看mysql的版本号,我们发现,通过yum方式安装,默认是5.1.73版本。需要注意的是,如果对mysql版本不敏感的应用,建议使用yum方式安装;但如果过是生产环境,运行大型网站系统,那么建议通过源码安装的方式部署mysql,版本号建议>=5.6。

2.配置文件的位置:

  [root@example03 ~]# find / -name my.cnf
  /etc/my.cnf

3.通过yum安装软件包的位置:

  [root@example03 ~]# whereis mysql
  mysql: /usr/bin/mysql /usr/lib64/mysql /usr/include/mysql /usr/share/mysql /usr/share/man/man1/mysql.1.gz

相关文章

  • MySQL安装及数据目录修改

    安装环境 Azure RedHat7 安装数据库 安装mysql yum源yum localinstall htt...

  • mysql安装

    mysql数据库的安装 1、【5.7版本】 安装 yum repo文件 查看 YUM 仓库关于 MySQL 的所有...

  • 2.数据库的安装

    数据库的安装 CentOS安装MySQL# 安装MySQL服务端和客户端yum -y install mysql-...

  • Linux 操作数据库命令

    数据库安装参考:Centos 7 使用yum安装MySQL5.6 一、连接数据库 格式: mysql -h主机地址...

  • Centos6.5 安装mysql

    查看yum上提供下载的mysql的版本信息 yum list | grep mysql进行数据库的安装 ...

  • CentOS7.4中安装MySQL57数据库

    检查系统中是否安装MySQL数据库 yum list installed | grep mysql如果系统中安装了...

  • 四,CentOS 6.8中安装mysql

    通过yum来进行mysql的安装 安装数据库: 在使用mysql数据库时,都得首先启动mysqld服务,因此有必要...

  • CentOS7下安装MySQL

    使用yum命令下载并安装MySQL文件1、下载rpm文件 2、安装MySQL数据库 3、启动数据库 4、查看初始密...

  • 数据库安装

    一,数据库简介 二,yum源安装mysql 三,源码安装mysql 四,mysql自带连接命令及更改密码 五,my...

  • MySQL在linux下的简单使用

    MySQL简介 MySQL是一个关系型数据库管理系统。 安装 yum -y install mysql-serve...

网友评论

    本文标题:yum安装mysql数据库

    本文链接:https://www.haomeiwen.com/subject/gsbfattx.html