centos6.5下安装mysql 5.6

1.使用yum命令安装mysql

[html] view plaincopy

  1. [[email protected] ~]#  yum -y install mysql-server

2.设置开机启动

[html] view plaincopy

  1. [[email protected] ~]#  chkconfig mysqld on

3.启动MySQL服务

[html] view plaincopy

  1. [[email protected] ~]#  service mysqld start

4.设置MySQL的root用户设置密码

[html] view plaincopy

  1. [[email protected] ~]#  mysql -u root
  2. mysql> select user,host,password from mysql.user;
  3. +------+-----------+----------+
  4. | user | host      | password |
  5. +------+-----------+----------+
  6. | root | localhost |          |
  7. | root | bogon     |          |
  8. | root | 127.0.0.1 |          |
  9. |      | localhost |          |
  10. |      | bogon     |          |
  11. +------+-----------+----------+
  12. 5 rows in set (0.01 sec)

查询用户的密码,都为空,用下面的命令设置root的密码为root

[html] view plaincopy

  1. mysql> set password for [email protected]localhost=password(‘root‘);
  2. mysql> exit

5.用新密码登陆

[html] view plaincopy

  1. [[email protected] ~]#  mysql -u root -p
  2. Enter password:

6.创建mysql新用户test_user

[html] view plaincopy

  1. mysql> create user ‘test_user‘@‘%‘ identified by ‘test_user‘;
  2. Query OK, 0 rows affected (0.00 sec)

7.给新用户test_user授权,让他可以从外部登陆和本地登陆

注意:@左边是用户名,右边是域名、IP和%,表示可以访问mysql的域名和IP,%表示外部任何地址都能访问。

[html] view plaincopy

  1. mysql> grant all privileges on *.* to ‘test_user‘@‘localhost‘ identified by ‘test_user‘;
  2. Query OK, 0 rows affected (0.00 sec)
  3. mysql> grant all privileges on *.* to ‘test_user‘@‘%‘ identified by ‘test_user‘;
  4. Query OK, 0 rows affected (0.00 sec)
  5. mysql> select user,host,password from mysql.user;
  6. +----------+-----------+-------------------------------------------+
  7. | user     | host      | password                                  |
  8. +----------+-----------+-------------------------------------------+
  9. | root     | localhost | *81F5E21E35407D884A6CD4A731AEBFB6AF209E1B |
  10. | root     | bogon     |                                           |
  11. | root     | 127.0.0.1 |                                           |
  12. |          | localhost |                                           |
  13. |          | bogon     |                                           |
  14. | test_user | %         | *3046CF87132BBD4FDDF06F321C6859074843B7D3 |
  15. | test_user | localhost | *3046CF87132BBD4FDDF06F321C6859074843B7D3 |
  16. +----------+-----------+-------------------------------------------+
  17. 7 rows in set (0.00 sec)
  18. mysql> flush privileges;
  19. Query OK, 0 rows affected (0.01 sec)

8.查看mysql5.1的默认存储引擎

从下面的执行结果可以看出,mysql的默认引擎是MyISAM,这个引擎是不支持事务的。

[html] view plaincopy

  1. mysql> show engines;
  2. +------------+---------+------------------------------------------------------------+--------------+------+------------+
  3. | Engine     | Support | Comment                                                    | Transactions | XA   | Savepoints |
  4. +------------+---------+------------------------------------------------------------+--------------+------+------------+
  5. | MRG_MYISAM | YES     | Collection of identical MyISAM tables                      | NO           | NO   | NO         |
  6. | CSV        | YES     | CSV storage engine                                         | NO           | NO   | NO         |
  7. | MyISAM     | DEFAULT | Default engine as of MySQL 3.23 with great performance     | NO           | NO   | NO         |
  8. | InnoDB     | YES     | Supports transactions, row-level locking, and foreign keys | YES          | YES  | YES        |
  9. | MEMORY     | YES     | Hash based, stored in memory, useful for temporary tables  | NO           | NO   | NO         |
  10. +------------+---------+------------------------------------------------------------+--------------+------+------------+
  11. 5 rows in set (0.00 sec)

也可以以下面的方式查看

[html] view plaincopy

  1. mysql> show variables like ‘storage_engine‘;
  2. +----------------+--------+
  3. | Variable_name  | Value  |
  4. +----------------+--------+
  5. | storage_engine | MyISAM |
  6. +----------------+--------+
  7. 1 row in set (0.00 sec)

9.修改mysql的默认引擎为InnoDB

9.1 停止mysql

[html] view plaincopy

  1. mysql> exit;
  2. [[email protected] ~]# service mysqld stop

9.2 修改/etc/my.cnf

[mysqld] 后加入

[html] view plaincopy

  1. default-storage-engine=InnoDB

加入后my.cnf的内容为:

[html] view plaincopy

  1. [[email protected] etc]# more my.cnf
  2. [mysqld]
  3. datadir=/var/lib/mysql
  4. socket=/var/lib/mysql/mysql.sock
  5. user=mysql
  6. # Disabling symbolic-links is recommended to prevent assorted security risks
  7. symbolic-links=0
  8. default-storage-engine=InnoDB
  9. [mysqld_safe]
  10. log-error=/var/log/mysqld.log
  11. pid-file=/var/run/mysqld/mysqld.pid

9.3 启动mysql

[html] view plaincopy

  1. [[email protected] etc]# service mysqld start
  2. Starting mysqld:  [  OK  ]

9.4 查看mysql默认存储引擎

[html] view plaincopy

  1. [[email protected] etc]# mysql -u root -p
  2. Enter password:
  3. Welcome to the MySQL monitor.  Commands end with ; or \g.
  4. Your MySQL connection id is 2
  5. Server version: 5.1.73 Source distribution
  6. Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
  7. Oracle is a registered trademark of Oracle Corporation and/or its
  8. affiliates. Other names may be trademarks of their respective
  9. owners.
  10. Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.
  11. mysql> show variables like ‘storage_engine‘;
  12. +----------------+--------+
  13. | Variable_name  | Value  |
  14. +----------------+--------+
  15. | storage_engine | InnoDB |
  16. +----------------+--------+
  17. 1 row in set (0.00 sec)

10.CentOS6.5开放mysql端口3306

CentOS6.5默认是不开放端口的,如果要让外部的系统访问CentOS6.5上的mysql,必须开放mysql的端口3306

10.1 修改/etc/sysconfig/iptables

添加下面一行

[html] view plaincopy

  1. -A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT

修改后iptables中的内容是

[html] view plaincopy

  1. [[email protected] etc]# more /etc/sysconfig/iptables
  2. # Firewall configuration written by system-config-firewall
  3. # Manual customization of this file is not recommended.
  4. *filter
  5. :INPUT ACCEPT [0:0]
  6. :FORWARD ACCEPT [0:0]
  7. :OUTPUT ACCEPT [0:0]
  8. -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
  9. -A INPUT -p icmp -j ACCEPT
  10. -A INPUT -i lo -j ACCEPT
  11. -A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT
  12. #添加配置项
  13. -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
  14. -A INPUT -m state --state NEW -m tcp -p tcp --dport 11211 -j ACCEPT
  15. -A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
  16. -A INPUT -j REJECT --reject-with icmp-host-prohibited
  17. -A FORWARD -j REJECT --reject-with icmp-host-prohibited
  18. COMMIT

11.重启防火墙

[html] view plaincopy

  1. [[email protected] etc]# service iptables restart

这样就可以从外部访问mysql了。

至此,mysql在CentOS6.5上的安装过程、用户创建、外部访问的步骤全部完成。

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-11-05 17:31:56

centos6.5下安装mysql 5.6的相关文章

建站笔记1:centos6.5下安装mysql

最近买了个域名,想要玩玩自己建网站:接下来遇到的问题都会一次记录下来,以备自己以后复习查看: 首先建站方案选择: wordPress +centos6.5 +mysql; 服务器买的:搬瓦工最低配置,其实主要用来使用vpn,( 你懂的,感兴趣的可以翻看我以前的博客). 地址:https://bandwagonhost.com  wordpress 下载地址:https://cn.wordpress.org 域名是百度开放云买的,推荐,很优惠啊! 第一个问题:centos6.5下安装mysql: 

CentOS6.5下安装MySQL

方法有点笨,但是,没有找到好一点的办法,就这样先装着,看朋友们是否也有需要,记录一下 CentOS 下安装MySQL5.7的时候出现各种问题,各种报错,试过无数办法,今天终于安装上去,特此记录一下. (1) 首先,下载一个wget dev.mysql.com/get/mysql-community-release-el6-5.noarch.rpm安装最新的MySQL的yum源,并安装上去 (2) 由于yum源是下载最新的安装包,所以,当你下载安装好yum源之后,就可以进行安装最新的MySQL了,

centos6.4下安装MySQL+apache+php+phpmyadmin

一 安装apache #yum install httpd 设置Apache的开机启动 #chkconfig httpd on 重启Apache #service httpd restart Apache的默认文档根目录是在CentOS上的/var/www/html 目录 ,配置文件是/etc/httpd/conf/httpd.conf.配置存储在的/etc/httpd/conf.d/目录. 二 安装PHP #yum install php 重启 #/etc/init.d/httpd resta

centos6.5下安装mysql数据库

1.安装mysql数据库:yum install mysql-server 2.临时启动数据库:service mysqld start 3.开机启动数据库:chkconfig mysqld on 原文地址:https://www.cnblogs.com/liuys635/p/11407083.html

Centos6.5下安装Mysql集群

安装要求:       安装环境:Centos6.5       安装方式:源码安装       软件名称: mysql-cluster-gpl-7.2.26-linux2.6-x86_64.tar.gz       软件安装位置:/usr/local/mysql       数据存放位置:/var/mysql/data       日志存放位置:/var/mysql/logs 集群设计:      首先设计集群的安装分配方式,至少需要三台服务器,sql节点和数据节点可以放在同一台服务器上,服务

centos6.5下安装mysql,远程访问

安装参考:http://www.cnblogs.com/xiaoluo501395377/archive/2013/04/07/3003278.html,很详细. 安装成功后,得做相应配置才能从别的机器访问mysql: 1.开放mysql访问端口3306 修改防火墙配置文件 vi /etc/sysconfig/iptables 加入端口配置 -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 6379 -j ACCE

CentOS6下安装MySQL数据库服务

大家好,今天是我在51CTO上的第一篇博文,以此来督促我自个养成一个好的学习习惯,也希望给大家有所帮助. ok,言归正传,今天我介绍的是在CentOS6环境下安装MySQL数据库,我所用到的是CentOS6镜像文件中所带的mysql包. 1.配置本地yum源. [[email protected] ~]# cd /etc/yum.repos.d/ [[email protected] yum.repos.d]# ls CentOS-Base.repo.bak  CentOS-Debuginfo.

CentOS6.5下安装配置MySQL

CentOS6.5下安装配置MySQL,配置方法如下: 安装mysql数据库:# yum install -y mysql-server mysql mysql-deve 查看mysql-server版本:# rpm -qi mysql-server 初始化mysql数据库:#service mysqld start 重启mysql数据库:#service mysql restart 设置mysql开机启动:# chkconfig mysqld on 为数据库设置用户名和密码:# mysqlad

CentOS6.2下安装配置MySql

转自:Linux学习之CentOS(十三)--CentOS6.4下Mysql数据库的安装与配置 如果要在Linux上做j2ee开发,首先得搭建好j2ee的开发环境,包括了jdk.tomcat.eclipse的安装(这个在之前的一篇随笔中已经有详细讲解了Linux学习之CentOS(七)--CentOS下j2ee环境搭建),如果要开发web项目,我们当然可以安装一个myeclipse到Linux系统上去,这个安装方法和安装eclipse完全相同,就没有记录下来了,有了jdk.tomcat.ecli