AliSQL編譯安裝
- 2019 年 12 月 13 日
- 筆記
1、下載AliSQL
源碼https://github.com/alibaba/AliSQL
2、linux編譯
若安裝MySQL則 rm /etc/my.cnf卸載,否則忽略 卸載已安裝的mysql
yum remove mysql mysql-server mysql-libs compat-mysql51 //51為版本 rm –rf /var/lib/mysql rm /etc/my.cnf
查看是否還存在mysql軟件
rpm -qa|grep mysql
若存在,則繼續
yum –y remove 查詢到的軟件名
一、編譯安裝AliSQL前的準備工作 1、編譯源碼所需的工具和庫
yum install gcc gcc-c++ ncurses-devel perl
2、安裝cmake,或從https://cmake.org/download/下載所需版本
wget --no-check-certificate http://www.cmake.org/files/v2.8/cmake-2.8.10.2.tar.gz tar -zxvf cmake-2.8.10.2.tar.gz cd cmake-2.8.10.2 ./bootstrap ; make ; make install cd ../
3、安裝bison,從http://ftp.gnu.org/gnu/bison/下載所需版本
wget http://ftp.gnu.org/gnu/bison/bison-2.7.tar.gz tar -xvzf bison-2.7.tar.gz cd bison-2.7 ./configure make && make install cd ../
二、設置AliSQL用戶和組 1、增加AliSQL用戶和組
groupadd mysql
2、新增AliSQL用戶
useradd -r -g mysql mysql
三、AliSQL所需目錄 1、新建AliSQL安裝目錄
mkdir –p /usr/local/mysql
2、新建AliSQL數據庫數據文件目錄
mkdir -p /data/mysqldb
四、下載AliSQL源碼並解壓 從https://github.com/alibaba/AliSQL下載源碼
解壓unzip AliSQL-master.zip cd AliSQL-master
五、編譯安裝AliSQL
1、設置編譯參數
cmake -DCMAKE_INSTALL_PREFIX=/usr/local/mysql -DMYSQL_UNIX_ADDR=/usr/local/mysql/mysql.sock -DDEFAULT_CHARSET=utf8 -DDEFAULT_COLLATION=utf8_general_ci -DWITH_INNOBASE_STORAGE_ENGINE=1 -DWITH_ARCHIVE_STORAGE_ENGINE=1 -DWITH_BLACKHOLE_STORAGE_ENGINE=1 -DMYSQL_DATADIR=/data/mysqldb -DMYSQL_TCP_PORT=3306 -DENABLE_DOWNLOADS=1 或者: cmake -DCMAKE_INSTALL_PREFIX=/usr/local/mysql -DMYSQL_UNIX_ADDR=/usr/local/mysql/mysql.sock -DDEFAULT_CHARSET=utf8 -DDEFAULT_COLLATION=utf8_general_ci -DWITH_INNOBASE_STORAGE_ENGINE=1 -DWITH_ARCHIVE_STORAGE_ENGINE=1 -DWITH_BLACKHOLE_STORAGE_ENGINE=1 -DMYSQL_DATADIR=/data/mysqldb -DMYSQL_TCP_PORT=3306 -DENABLE_DOWNLOADS=1
注:重新運行配置,需要刪除CMakeCache.txt文件
rm CMakeCache.txt
2、編譯源碼
make
3、安裝
make install
六、修改AliSQL目錄所有者和組
1、修改AliSQL安裝目錄
1)、cd /usr/local/mysql 2)、chown -R mysql:mysql .
2、修改AliSQL數據庫文件目錄
1)、cd /data/mysqldb 2)、chown -R mysql:mysql .
七、初始化AliSQL數據庫
cd /usr/local/mysql scripts/mysql_install_db --user=mysql --datadir=/data/mysqldb
註:初始化數據庫出現錯誤:
FATAL ERROR:please install the following Perl modules before executingscripts/mysql_install_db: Data::Dumper 安裝:autoconf庫 命令:yum –y install autoconf //此包安裝時會安裝Data::Dumper 再次執行初始化AliSQL數據庫命令
八、複製AliSQL服務啟動配置文件
cp /usr/local/mysql/support-files/my-default.cnf /etc/my.cnf
註:如果/etc/my.cnf文件存在,則覆蓋
九、複製AliSQL服務啟動腳本及加入path路徑
cp support-files/mysql.server /etc/init.d/mysqld vim /etc/profile PATH=/usr/local/mysql/bin:/usr/local/mysql/lib:$PATH export PATH source/etc/profile
十、系統在/usr/bin下面做鏈接
ln -s /usr/local/mysql/bin/mysql /usr/bin
十一、啟動AliSQL服務並加入開機自啟動(可選)
service mysqld start chkconfig --level 35 mysqld on
十二、檢查服務是否啟動
netstat -tulnp | grep 3306 mysql -u root -p
防火牆設置參考http://www.ilkhome.cn/?post=156
給root賬號授權,root賬號使用123456從任何主機連接到mysql服務器:mysql>
<span style="color:#E56600;font-size:14px;">GRANT</span>
<span style="color:#E56600;font-size:14px;">ALL</span>
<span style="color:#E56600;font-size:14px;">PRIVILEGES</span>
<span style="color:#E56600;font-size:14px;">ON</span>
<span style="color:#E56600;font-size:14px;">*.*</span>
<span style="color:#E56600;font-size:14px;">TO</span>
<span style="color:#E56600;font-size:14px;">'root'</span>
<span style="color:#E56600;font-size:14px;">@</span>
<span style="color:#E56600;font-size:14px;">'%'</span>
<span style="color:#E56600;font-size:14px;">IDENTIFIED</span>
<span style="color:#E56600;font-size:14px;">BY</span>
<span style="color:#E56600;font-size:14px;">'123456'</span>
<span style="color:#E56600;font-size:14px;">WITH</span>
<span style="color:#E56600;font-size:14px;">GRANT</span>
<span style="color:#E56600;font-size:14px;">OPTION</span>
<span style="color:#E56600;font-size:14px;">;</span>
3.windows下VS2013編譯
1、生成VS2013工程 windows下使用VS2013進行編譯 mkdir build_msvc cd build_msvc cmake -DCMAKE_INSTALL_PREFIX=D:AliSQL -G "Visual Studio 12 Win64" .. 執行cmake前需要安裝好bison。 點擊下載 2、編譯安裝 執行完成cmake後生成VS工程文件 使用VS2013 開發人員命令提示進入build_msvc目錄,執行下面命令進行編譯 msbuild ALL_BUILD.vcxproj # 編譯 msbuild INSTALL.vcxproj # 安裝 可以在後面添加/p:Configuration="Release"參數來指定編譯release版本。因為文件比較多,可以使用/maxcpucount:8來指定使用的CPU核心數,並行編譯。 3、使用 安裝後在安裝目錄下建立my.ini文件,具體寫法可以百度。 新建一個start.bat :: START binmysqld –standalone –console 雙擊start.bat啟動即可。 4、編譯錯誤解決 錯誤1:alisqlsqlbinlog.h(236): error C2065: 「asm」: 未聲明的標識符 定位到錯誤代碼 #define barrier() __asm volatile("" ::: "memory") 這個宏是GCC下做編譯屏障的宏,VS2013不支持(x64編譯也不支持內聯彙編),使用windows下的替代版本 #define barrier() MemoryBarrier() 具體的可以看MemoryBarrier macro 參考http://book.51cto.com/art/201504/474436.htm 錯誤2:alisqlstorageinnobaseincludetrx0trx.h(54): error C2146: 語法錯誤: 缺少「,」(在標識符「attribute」的前面) 因為__attribute__是gcc的擴展,所以VC不支持也很正常。 在trx0trx.h文件最前面添加#define __attribute__(…)即可。 類似的問題還出現在sql_connect.cc等文件中,可以將上面的宏添加到預編譯指令中。 錯誤3:AliSQLstorageinnobasehandlerha_innodb.cc(16222): error C2440: 「初始化」: 無法從「ulint 」轉換為「unsigned long 」 將ha_innodb.cc中的 static MYSQL_SYSVAR_ULONG(adaptive_hash_index_parts, btr_search_index_num, PLUGIN_VAR_RQCMDARG | PLUGIN_VAR_READONLY, "Number of InnoDB adaptive hash index partitions", NULL, NULL, 8, 1, 512, 0); 修改為 static unsigned long& btr_search_index_num_ul = (unsigned long&)btr_search_index_num; static MYSQL_SYSVAR_ULONG(adaptive_hash_index_parts, btr_search_index_num_ul, PLUGIN_VAR_RQCMDARG | PLUGIN_VAR_READONLY, "Number of InnoDB adaptive hash index partitions", NULL, NULL, 8, 1, 512, 0); 錯誤4:AliSQLstorageinnobasereadread0read.cc(507): error C3861: 「min」: 找不到標識符 將read0read.cc中代碼(506-508行) if (view->n_descr > 0) { view->up_limit_id = min(view->up_limit_id, view->descriptors[0]); } 修改為 if (view->n_descr > 0) { view->up_limit_id = (view->up_limit_id < view->descriptors[0])? view->up_limit_id : view->descriptors[0]; } 錯誤5:AliSQLstorageinnobasereadread0read.cc(603): error C2664: 「lint win_xchg_and_add(volatile lint ,lint)」: 無法將參數 1 從「ulint 」轉換為「volatile lint *」 將read0read.cc中代碼(601-604行) os_atomic_decrement_lint(&srv_read_views_memory, sizeof(read_view_t) + view->max_descr * sizeof(trx_id_t)); 修改為 os_atomic_decrement_lint((volatile lint*)&srv_read_views_memory, sizeof(read_view_t) + view->max_descr * sizeof(trx_id_t)); 這樣的錯誤還有幾個,都是做這樣的修改即可。 錯誤6:AliSQLsqlsql_filter.cc(134): error C3861: 「__sync_add_and_fetch」: 找不到標識符 這樣的錯誤有多個 4>E:AliSQLsqlsql_filter.cc(134): error C3861: 「__sync_add_and_fetch」: 找不到標識符 4>E:AliSQLsqlsql_filter.cc(356): error C3861: 「__sync_add_and_fetch」: 找不到標識符 4>E:AliSQLsqlsql_filter.cc(362): error C3861: 「__sync_bool_compare_and_swap」: 找不到標識符 4>E:AliSQLsqlsql_filter.cc(455): error C3861: 「__sync_sub_and_fetch」: 找不到標識符 這是gcc提供的built-in函數,用於提供加減和邏輯運算的原子操作。參考http://www.cnblogs.com/FrankTan/archive/2010/12/11/1903377.html 可以對應VC下的Interlocked函數族。 參考http://jishublog.iteye.com/blog/1898518 https://technet.microsoft.com/zh-cn/library/ms683504 帶Exchange的函數返回的是更新前的值,不帶的返回更新後的值。 所以這裡可以在sql_filter.h(多個文件中都需要用到)文件頭部添加如下宏定義來實現替換 // 返回更新前的值 #define __sync_fetch_and_add(ptr,value, …) InterlockedExchangeAdd64((LONG64 volatile *)ptr,value) #define __sync_fetch_and_sub(ptr, value, …) InterlockedExchangeAdd64((LONG64 volatile *)ptr,-value) #define __sync_fetch_and_or(ptr, value, …) #define __sync_fetch_and_and(ptr, value, …) #define __sync_fetch_and_xor(ptr, value, …) #define __sync_fetch_and_nand(ptr, value, …) // 返回更新後的值 #define __sync_add_and_fetch(ptr, value, …) InterlockedAdd64((LONG64 volatile *)ptr,value) #define __sync_sub_and_fetch(ptr, value, …) InterlockedAdd64((LONG64 volatile *)ptr,-value) #define __sync_or_and_fetch(ptr, value, …) #define __sync_and_and_fetch(ptr, value, …) #define __sync_xor_and_fetch(ptr, value, …) #define __sync_nand_and_fetch(ptr, value, …) #define __sync_bool_compare_and_swap(ptr, oldval,newval, …) InterlockedCompareExchange64(ptr,newval,oldval) 錯誤7:AliSQLsqlsql_locale.cc(789): error C2146: 語法錯誤: 缺少「}」(在標識符「嗒忇喃嵿嗒苦」的前面) 這是因為VS對utf-8的支持不好(編譯器支持不好),將其保存為帶BOM標記的UTF-8編碼即可。 錯誤8:AliSQLsqlsql_show.cc(3896): error C2059: 語法錯誤:「(」 先看一下這一段代碼 // Sends the global table stats back to the client. int fill_schema_table_stats(THD* thd, TABLE_LIST* tables, Item* __attribute__((unused))) { TABLE *table= tables->table; DBUG_ENTER("fill_schema_table_stats"); char *table_full_name, *table_schema; TABLE_SHARE *share; uint indx; 這裡函數中出現了__attribute__((unused))這個東西,需要處理一下。 在文件sql_show.cc開頭添加(在mysqld.cc中也需要) #define __attribute__(…) 錯誤9:AliSQLsqlsql_show.cc(3922): error C3861: 「strsep」: 找不到標識符 這個函數在linux下是有的,windows下沒有就使用下面的來替代 char *strsep(char **stringp, const char *delim) { char *s; const char *spanp; int c, sc; char *tok; if ((s = *stringp)== NULL) return (NULL); for (tok = s;;) { c = *s++; spanp = delim; do { if ((sc =*spanp++) == c) { if (c == 0) s = NULL; else s[-1] = 0; *stringp = s; return (tok); } } while (sc != 0); } /* NOTREACHED */ } 錯誤10:C:Program Files (x86)MSBuildMicrosoft.Cppv4.0V120Microsoft.CppCommon.targets(170,5): error MSB6006: 「cmd.exe」已退出,代碼為 1。 因為編譯ALL_BUILD工程完成後會去執行下面操作 Executing E:/AliSQL/build_msvc/sql/Debug/mysqld.exe –no-defaults –console –bootstrap –lc-messages-dir=E:/windows-software/AliSQL/build_msvc/sql/share –basedir=. –datadir=. –default-storage-engine=MyISAM –default-tmp-storage-engine=MyISAM –loose-skip-ndbcluster –max_allowed_packet=8M –net_buffer_length=16K