Home >Database >Mysql Tutorial >Linux下MySQL数据文件目录搬迁_MySQL

Linux下MySQL数据文件目录搬迁_MySQL

PHP中文网
PHP中文网Original
2016-05-27 14:12:281403browse

Linux下MySQL数据文件目录搬迁_MySQL

操作环境:centos 6.4 64位

MySQL 版本:5.6.13(rpm安装)

操作目的:将MySQL默认的数据文件存储目录:/var/lib/mysql 改为/var/lib/mysql2

操作步骤:

1、停掉mysql 服务

# service mysql stop

2、拷贝 或者 重命名/var/lib/mysql目录为 /var/lib/mysql2

# cd /var/lib

# cp -R mysql mysql2   |  mv  mysql mysql2

3、修改mysql2 目录所属用户,组

chown -R mysql:mysql mysql2

4、修改/etc/my.cnf 配置文件

主要修改socket,datadir参数

5、修改MySQL启动脚本/etc/init.d/mysql

# nano /etc/init.d/mysql

#datadir=/var/lib/mysql(注释此行)
datadir=/var/lib/mysql2 (加上此行)
6、启动mysql

/etc/init.d/mysql start   |  service mysql start

以上就是Linux下MySQL数据文件目录搬迁_MySQL的内容,更多相关内容请关注PHP中文网(www.php.cn)!


Statement:
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