程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> 對MySQL數據庫中Table is read only的殲滅

對MySQL數據庫中Table is read only的殲滅

編輯:MySQL綜合教程

在實際操作中你是否遇到過這樣的提示,repair數據表中出現“MySQL數據庫中Table is read only”的字樣,那麼對其到底如何解決呢?以下的文章就是針對MySQL數據庫中出現Table is read only的解決方案的描述。

在MySQL中,Select之類的都正常,但在網頁程序中提示:Table '********' is read only

SQL代碼

  1. chmod -R 0777 /var/lib/MySQL/taoniu2007/  

給數據庫目錄的所屬用戶和組改為MySQL,並加上777的權限,還是一樣提示。

程序中使用root連接,也是一樣的提示。

想用myisamchk來檢查一下,也提示read only。

最終在這裡找到了解決方法:http://www.MySQLtalk.org/re-the-table-is-read-only-vt154092.html

引用一下

SQL代碼

  1. Hi,   
  2. I just encountered a similar problem on one of my production servers   
  3. this morning. (I'm still investigating the cause.) After doing a   
  4. quick bit of Google-searching, this solved my problem:   
  5. MySQLadmin -u <username> -p flush-tables   
  6. By the way: All directories in /var/lib/MySQL should have 700   
  7. permissions (owned my the MySQL user) and everything within those   
  8. directories should be 660 (owned by the MySQL user and MySQL group).   
  9. (This was on a FreeBSD 4.8 server running MySQL Server 3.23.58)   
  10. Hope this helps,   
  11. Seth   

運行flush-tables後,read only問題解決

MySQL數據庫中Table is read only的解決

以上的相關內容就是對MySQL數據庫中Table is read only的解決的介紹,望你能有所收獲。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved