Home > Database > Mysql Tutorial > MySQL的三种安装方式

MySQL的三种安装方式

WBOY
Release: 2016-06-07 17:32:16
Original
998 people have browsed it

安装MySQL的方式常见的有三种:rpm包形式通用二进制形式源码编译

安装MySQL的方式常见的有三种:

1,rpm包形式

(1) 操作系统发行商提供的

(2) MySQL官方提供的(版本更新,,修复了更多常见BUG)

关于MySQL中rpm包类型的介绍:

安装方法: 首先可以从安装光盘中或者到mysql的网站上下载对应版本的rpm包如下:
  • MySQL-server-community-5.5.28-1.rhel5.i386.rpm
  • MySQL-client-community-5.5.28-1.rhel5.i386.rpm
  • 接着我们可以使用rpm命令进行安装:
  • rpm -ivh MySQL-server-community-5.5.28-1.rhel5.i386.rpm
  • rpm -ivh MySQL-client-community-5.5.28-1.rhel5.i386.rpm
  • 补充一点:
  • -h 使用符号#显示安装进度
  • -v 报告每一步操作的情况
  • 2,通用二进制包 (1)新建用户以安全方式运行进程: (2)安装并初始化mysql-5.5.28 首先下载平台对应的mysql版本至本地,这里是32位平台,因此,选择的为mysql-5.5.28-linux2.6-i686.tar.gz (3)为mysql提供主配置文件:
  • # cd /usr/local/mysql
  • # cp support-files/my-large.cnf /etc/my.cnf
  • (4)修改配置文件: (5)为mysql提供sysv服务脚本:
  • # cd /usr/local/mysql
  • # cp support-files/mysql.server /etc/rc.d/init.d/mysqld
  • (6)添加至服务列表:
  • # chkconfig --add mysqld
  • # chkconfig mysqld on
  • (7)而后就可以启动服务测试使用了。 # service mysqld start

    推荐阅读:

    Linux下MySQL安装详解

    CentOS上MySQL安装配置操作说明

    Linux下 MySQL安装和基本管理

    VMware下Linux的MySQL安装和升级

     

    继续阅读本文的精彩内容请看第2页

    linux

    Related labels:
    source:php.cn
    Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    Popular Tutorials
    More>
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template