您好,登錄后才能下訂單哦!
本篇文章為大家展示了MySQL中如何使用NoSQL插件,內(nèi)容簡明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。
MySql基本安裝步驟:
1 2 3 4 5 6 7 | cd ahiguti-HandlerSocket-Plugin- for -MySQL-635b930
./autogen.sh
./configure --with-mysql-source=/site/soft/mysql-5.1.33 --with-mysql-bindir=/data2/mysql5.1/bin --with-mysql-plugindir=/data2/mysql5.1/lib/plugin
make && make install |
注:--with-mysql-plugindir選項(xiàng)指定的插件庫程序安裝目錄需要預(yù)先創(chuàng)建。
安裝過程中遇到了2個(gè)問題:
1. 執(zhí)行configure腳本的時(shí)候報(bào)錯(cuò):
1 | configure: error: MySQL source version does not match MySQL binary version |
錯(cuò)誤產(chǎn)生原因是:
configure 腳本中獲取 MYSQL_SOURCE_VERSION 變量值的方式不完善,并不能根據(jù) --with-mysql-source 選項(xiàng)指定源代碼目錄準(zhǔn)確分析出版本號(hào),獲取代碼片段為:
1 2 3 4 5 6 7 8 9 10 11 12 13 | if test -f "$ac_mysql_source_dir/configure.in" ; then
MYSQL_SOURCE_VERSION=`cat $ac_mysql_source_dir/configure. in | grep "[MySQL Server]" | sed -e "s|.*([0-9]+.[0-9]+.[0-9]+[0-9a-zA-Z_-]*).*|1|" `
else
{ { echo "$as_me:$LINENO: error: invalid MySQL source directory: $ac_mysql_source_dir" >&5
echo "$as_me: error: invalid MySQL source directory: $ac_mysql_source_dir" >&2;}
{ (exit 1); exit 1; }; }
fi |
解決辦法:
修改 configure 腳本,將檢查源代碼與二進(jìn)制版本號(hào)是否一致的判斷邏輯注釋掉。
1 2 3 4 5 6 7 8 9 | # if test a$MYSQL_SOURCE_VERSION != a$MYSQL_BIN_VERSION ; then
# { { echo "$as_me:$LINENO: error: MySQL source version does not match MySQL binary version" >&5
echo "$as_me: error: MySQL source version does not match MySQL binary version" >&2;}
# { (exit 1); exit 1; }; }
# fi |
2. 執(zhí)行make時(shí)報(bào)錯(cuò):
1 | libtool: link: only absolute run-paths are allowed |
上述內(nèi)容就是MySQL中如何使用NoSQL插件,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。