liukun2009 发表于 2018-10-5 06:04:58

CentOS 6.5通过yum安装 MySQL-5.5

  1.安装mysql-5.5的yum源
  rpm -ivh http://repo.mysql.com/yum/mysql-5.5-community/el/6/x86_64/mysql-community-release-el6-5.noarch.rpm
  要安装MySQL5.6的可以安装:
  

rpm -ivh http://repo.mysql.com/mysql-community-release-el6.rpm  
最新的yum源可以去http://dev.mysql.com/downloads/repo/yum下载
  

  2.修改安装好的yum源
  编辑 /etc/yum.repos.d/mysql-community.repo文件,将5.5的enabled改为1,5.6的enabled改为0
  

# Enable to use MySQL 5.5  

  
name=MySQL 5.5 Community Server
  
baseurl=http://repo.mysql.com/yum/mysql-5.5-community/el/6/$basearch/
  
enabled=1
  
gpgcheck=1
  
gpgkey=file:/etc/pki/rpm-gpg/RPM-GPG-KEY-mysql
  

  
# Enable to use MySQL 5.6
  

  
name=MySQL 5.6 Community Server
  
baseurl=http://repo.mysql.com/yum/mysql-5.6-community/el/6/$basearch/
  
enabled=0
  
gpgcheck=1
  
gpgkey=file:/etc/pki/rpm-gpg/RPM-GPG-KEY-mysql
  

  

  3.安装mysql-5.5
  yum install mysql-community-client mysql-community-devel mysql-community-server php-mysql
  4.调整配置
  编辑 /etc/my.cnf 文件
  

innodb_file_per_table=1 设置InnoDB为独立表空间模式,每个数据库的每个表都会生成一个数据目录  
innodb_buffer_pool_size= 默认值:128M,设置为操作系统内存的70%-80%最佳
  

  5、下面这条命令设置开机自启动,省的我们每次开机就去启动一下mysql了。
  chkconfig --levels 345 mysqld on
  原始帐号和密码    rootroot


页: [1]
查看完整版本: CentOS 6.5通过yum安装 MySQL-5.5