您好,登錄后才能下訂單哦!
這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)PostgreSQL程序版本號(hào)有什么用,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
很多人查看過(guò)程序的版本號(hào):
quanzl-mac:bin quanzl$ ./postgres -Vpostgres (PostgreSQL) 11beta2 quanzl-mac:bin quanzl$ ./initdb -Vinitdb (PostgreSQL) 11beta2 quanzl-mac:bin quanzl$
似乎這些也就是給我們看看,沒(méi)有其他用處,其實(shí)并非如此。
1、把initdb 放到其他版本bin目錄下試試看(別忘記備份,嘗試完之后別忘記恢復(fù)原狀):
quanzl-mac:bin quanzl$ ./initdb -D ../data The program "postgres" was found by "/Users/quanzl/build/flyingdb-v10bin/bin/initdb" but was not the same version as initdb. Check your installation. quanzl-mac:bin quanzl$
很清楚的錯(cuò)誤提示,initdb和postgres版本不一致。
2、如何根據(jù)錯(cuò)誤提示定位代碼位置
遇到錯(cuò)誤信息時(shí),如果對(duì)代碼不夠熟悉,怎么知道哪段代碼在報(bào)錯(cuò)呢?就像上邊的例子,可以在代碼中搜索“but was not the same version”,或者 “The program \"postgres\" was found by”,可以很快定位。如果不明白后者為什么這么搜,需要補(bǔ)一下C語(yǔ)言基礎(chǔ),這種格式的字符串如果搜不到那么應(yīng)該試試搜索 “The program \"%s\" was found by”。
搜后者可以看到還有其他幾個(gè)程序在做同樣的檢查:pg_ctl、pg_dumpall、pg_rewind。
3、initdb
來(lái)看initdb的報(bào)錯(cuò)部分
if ((ret = find_other_exec(argv0, "postgres", PG_BACKEND_VERSIONSTR, backend_exec)) < 0) {
當(dāng)返回值小于0時(shí)進(jìn)入錯(cuò)誤處理。
find_other_exec 的幾個(gè)參數(shù):變量 argv0 的值是 "initdb"、常量 "postgres"、常量 PG_BACKEND_VERSIONSTR定義是:
#define PG_BACKEND_VERSIONSTR "postgres (PostgreSQL) " PG_VERSION "\n"
而最后一個(gè)參數(shù) backend_exec
將在 find_other_exec
函數(shù)內(nèi)賦值。
4、函數(shù) find_other_exec
intfind_other_exec(const char *argv0, const char *target,const char *versionstr, char *retpath)
在上邊的例子里,它接收到的前三個(gè)字符串參數(shù)分別是:"initdb"、"postgres"、"postgres (PostgreSQL) 11beta2\n"
首先找initdb所在目錄,確認(rèn) target 也就是 postgres
是否存在,權(quán)限夠不夠,一切正常就執(zhí)行 postgres[.exe] -V
:
snprintf(cmd, sizeof(cmd), "\"%s\" -V", retpath);if (!pipe_read_line(cmd, line, sizeof(line)))return -1;
比較其輸出是不是與 "postgres (PostgreSQL) 11beta2\n" 相同:
if (strcmp(line, versionstr) != 0)return -2;
上述就是小編為大家分享的PostgreSQL程序版本號(hào)有什么用了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。