熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> MySQL >> 正文

CentOS編譯Mysql 4.0.27數據庫問題解決

2022-06-13   來源: MySQL 

  現在好多人都用起了centos但有些特殊要求還必須安裝mysql的數據庫在第一次安裝過程中還遇到了不少問題特把這次安裝過程記錄下來以供遇到類似問題的朋友參考

  

  首先下載mysqltargz解壓進入目錄編譯

  

  編譯時出現錯誤checking LinuxThreadsNot found

  

  這是由於nptl與linuxthreads的分別造成的可以在/usr/include/pthreadh中增加 /* Linuxthreads */解決這個問題

  

  echo /* Linuxthreads */ >> /usr/include/pthreadh

  

  編譯時加入 –withpthread 及 –withnamedthreadlib:

  

  重新編譯再次出錯:configure: error: No curses/termcap library found

  

  這是因為沒有安裝ncurses接下來先安裝它

  

  yum install ncursesdevel

  

  下來繼續編譯編譯的時候又出現了錯誤: cannot find lreadline

  

  這個錯誤是由於沒有readline庫文件造成的錯誤安裝readline庫文件

  

  yum install readlinedevel

  

  /configure –withpthread –withnamedthreadlib=lpthread 再一次進行編譯


From:http://tw.wingwit.com/Article/program/MySQL/201311/29374.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.