安装MySQL

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安装MySQL相关的知识,希望对你有一定的参考价值。

  mysql官方网站下载地址 http://dev.mysql.com/downloads/ 下载的版本根据你的平台和需求而定,目前比较常用的为mysql-5.0/mysql-5.1, 5.5版本

  1. 下载mysql到/usr/local/src/

cd /usr/local/src/
wget http://mirrors.sohu.com/mysql/MySQL-5.1/mysql-5.1.73-linux-i686-glibc23.tar.gz
  1. 解压

[[email protected] src]# tar zxvf mysql-5.1.73-linux-i686-glibc23.tar.gz
  1. 把解压完的数据移动到/usr/local/mysql

[[email protected] src]#  mv mysql-5.1.73-linux-i686-glibc23 /usr/local/mysql
  1. 建立mysql用户

[[email protected] src]# useradd -s /sbin/nologin mysql
  1. 初始化数据库

[[email protected] src]# cd /usr/local/mysql
[[email protected] mysql]# mkdir -p /data/mysql ; chown -R mysql /data/mysql
[[email protected] mysql]# ./scripts/mysql_install_db --user=mysql --datadir=/data/mysql

--user 定义数据库的所属主, --datadir 定义数据库安装到哪里,建议放到大空间的分区上,这个目录需要自行创建。这一步骤很关键,如果你看到两个 “OK” 说明执行正确,

  1. 拷贝配置文件

[[email protected] mysql]# cp support-files/my-large.cnf /etc/my.cnf
  1. 拷贝启动脚本文件并修改其属性

[[email protected] mysql]# cp support-files/mysql.server  /etc/init.d/mysqld
[[email protected] mysql]# chmod 755 /etc/init.d/mysqld
  1. 修改启动脚本

[[email protected] mysql]# vim /etc/init.d/mysqld

需要修改的地方有"basedir=/usr/local/mysql"(mysql安装目录)和 “datadir=/data/mysql” (前面初始化数据库时定义的目录)

  1. 把启动脚本加入系统服务项,并设定开机启动,启动mysql

[[email protected] mysql]# chkconfig --add mysqld
[[email protected] mysql]# chkconfig mysqld on
[[email protected] mysql]# service mysqld start

如果启动不了,请到 /data/mysql/ 下查看错误日志,这个日志通常是主机名.err. 检查mysql是否启动的命令为:

[[email protected] mysql]# ps aux |grep mysqld


本文出自 “王志强” 博客,请务必保留此出处http://wangzhiqiang.blog.51cto.com/12079071/1871167

以上是关于安装MySQL的主要内容,如果未能解决你的问题,请参考以下文章

从mysql的片段中加载ListView

连接MySQL出现错误:ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)(代码片段

使用 json rereiver php mysql 在片段中填充列表视图

在Tomcat的安装目录下conf目录下的server.xml文件中增加一个xml代码片段,该代码片段中每个属性的含义与用途

PHP代码-psysh调试代码片段工具

关于mysql驱动版本报错解决,Cause: com.mysql.jdbc.exceptions.jdbc4Unknown system variable ‘query_cache_size(代码片段