Home >Database >Mysql Tutorial >linux mysql MYD上传问题_MySQL

linux mysql MYD上传问题_MySQL

WBOY
WBOYOriginal
2016-06-01 13:36:55977browse

bitsCN.com


linux mysql MYD上传问题

 

今天恢复服务器上数据库的某一张表,由于表比较大,直接使用复制

文件的方法备份数据库

再上传还原时出现问题,表文件的用户组和用户还有权限都不对,悲剧了! 

表变成了只读的 

 

1.用chgrp 命令来改变文件所属用户组 

chgrp mysql /usr/...... 

2.用chwon 命令来改变文件所属用户 

chwon mysql /usr/...... 

 

3.用chmod 命令来改变表文件的权限 

chmod 660 /usr/..... 

660就相当于--rw--rw--

bitsCN.com
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