How to modify the MySQL 5.5 database data directory under win2008 R2 server

黄舟
Release: 2017-06-02 10:28:01
Original
1967 people have browsed it

This article mainly introduces the method of modifying theMySQL5.5 database data directory under win2008 R2 server. Friends in need can refer to the following

Instructions:

Operating system: Windows Server 2008 R2

MySQL version: 5.5.25a

MySQL programInstallationDirectory: D:\ProgramFiles\MySQL\MySQL Server 5.5

MySQL databaseDefault directory: C:\ProgramData\MySQL\MySQL Server 5.5\data\

Requirements:Modify the MySQL database directory to D:\Program Files\MySQL\MySQL Server 5.5\data

Specific operations:

1. Stop MySQL

Start-cmd

net stopmysql55

## 2. Copy the original database directory Go to the new directory

1. Back up the data directory in D:\Program Files\MySQL\MySQL Server 5.5\ to data-bak

2. Copy C:\ProgramData\MySQL \MySQL Server 5.5\data directory to

D:\Program Files\MySQL\MySQL Server 5.5\ directory

System operation and maintenance www.osyunwei.com Warm reminder: qihang01 original content All rights reserved. Please indicate the source and original link when reprinting

3. Modify the MySQLconfiguration file

1. Use Notepad to open my.ini

in the C:\ProgramData\MySQL\MySQL Server 5.5\data\ directory and find data

dir="C:\ProgramData\MySQL\MySQL Server 5.5\data"

Add

# comment in frontRemove

and add a line below

datadir="D:\Program Files\MySQL\ MySQL Server 5.5\data"

After the modification is completed, save

Exit.

2. Copy C:\

Documents andSettings\All Users\Application Data\MySQL\MySQL Server 5.5 \ directory my.ini to

D:\Program Files\MySQL\MySQL Server 5.5\ directory

## 4. Restart MySQL

1. Start-cmd

net start mysql55

2. Enter the MySQL console

Start-All Programs-MySQL-MySQL Server 5.5-MySQL 5.5 Command Line Client

Prompt to enter the password of the MySQL root account, enter it and press Enter to enter the MySQL console

show variables like ' %datadir%';

#Query the MySQL data

database storage directory, as shown in the figure below

You can see that the MySQL database storage directory has been modified to D: \Program Files\MySQL\MySQL Server 5.5\data

At this point, modifying the MySQL 5.5 database directory under Windows Server 2008 R2 is completed

The above is the detailed content of How to modify the MySQL 5.5 database data directory under win2008 R2 server. For more information, please follow other related articles on the PHP Chinese website!

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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!