現在好多人都用起了centos5,但有些特殊要求還必須安裝MySQL4.0.27的數據庫,在第一次安裝過程中還遇到了不少問題,特把這次安裝過程記錄下來以供遇到類似問題的朋友參考
首先下載MySQL4.0.27.tar.gz,解壓進入目錄編譯
編譯時出現錯誤:checking “LinuxThreads”… “Not found”
這是由於nptl與linuxthreads的分別造成的,可以在/usr/include/pthread.h中增加 “/* Linuxthreads */”解決這個問題
echo ‘/* Linuxthreads */’ >> /usr/include/pthread.h
編譯時加入 –with-pthread 及 –with-named-thread-lib:
重新編譯再次出錯:configure: error: No curses/termcap library found
這是因為沒有安裝ncurses,接下來先安裝它
yum install ncurses-devel
下來繼續編譯,編譯的時候又出現了錯誤: cannot find -lreadline
這個錯誤是由於沒有readline庫文件造成的錯誤,安裝readline庫文件
yum install readline-devel
./configure –with-pthread –with-named-thread-lib=-lpthread 再一次進行編譯。