本篇內(nèi)容介紹了“bytom初始化時產(chǎn)生了什么配置文件”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
成都創(chuàng)新互聯(lián)是一家專業(yè)提供敘州企業(yè)網(wǎng)站建設(shè),專注與網(wǎng)站制作、網(wǎng)站設(shè)計、成都h5網(wǎng)站建設(shè)、小程序制作等業(yè)務(wù)。10年已為敘州眾多企業(yè)、政府機構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站建設(shè)公司優(yōu)惠進(jìn)行中。
使用以下命令將代碼切換到v1.0.1
的tag,以便與本系列引用的代碼一致:
git fetch git checkout -b v1.0.1
當(dāng)我們本地使用make bytomd
編譯完比原后,我們可以使用下面的命令來進(jìn)行初始化:
./bytomd init --chain_id testnet
這里指定了使用的chain是testnet
(還有別的選項,如mainnet
等等)。運行成功后,它將會在本地文件系統(tǒng)生成一些配置文件,供比原啟動時使用。
所以我的問題是:
下面我將結(jié)合源代碼,來回答這個問題。
首先比原在本地會有一個目錄專門用于放置各種數(shù)據(jù),比如密鑰、配置文件、數(shù)據(jù)庫文件等。這個目錄對應(yīng)的代碼位于config/config.go#L190-L205:
func DefaultDataDir() string { // Try to place the data folder in the user's home dir home := homeDir() dataDir := "./.bytom" if home != "" { switch runtime.GOOS { case "darwin": dataDir = filepath.Join(home, "Library", "Bytom") case "windows": dataDir = filepath.Join(home, "AppData", "Roaming", "Bytom") default: dataDir = filepath.Join(home, ".bytom") } } return dataDir }
可以看到,在不同的操作系統(tǒng)上,數(shù)據(jù)目錄的位置也不同:
蘋果系統(tǒng)(darwin
):~/Library/Bytom
Windows(windows
): ~/AppData/Roaming/Bytom
其它(如Linux):~/.bytom
我們根據(jù)自己的操作系統(tǒng)打開相應(yīng)的目錄(我的是~/Library/Bytom
),可以看到有一個config.toml
,內(nèi)容大約如下:
$ cat config.toml # This is a TOML config file. # For more information, see https://github.com/toml-lang/toml fast_sync = true db_backend = "leveldb" api_addr = "0.0.0.0:9888" chain_id = "testnet" [p2p] laddr = "tcp://0.0.0.0:46656" seeds = "47.96.42.1:46656,172.104.224.219:46656,45.118.132.164:46656"
它已經(jīng)把一些基本信息告訴我們了,比如:
db_backend = "leveldb"
:說明比原內(nèi)部使用了leveldb作為數(shù)據(jù)庫(用來保存塊數(shù)據(jù)、帳號、交易信息等)
api_addr = "0.0.0.0:9888"
:我們可以在瀏覽器中打開http://localhost:9888
來訪問dashboard頁面,進(jìn)行查看與管理
chain_id = "testnet"
:當(dāng)前連接的是testnet
,即測試網(wǎng),里面挖出來的比原幣是不值錢的
laddr = "tcp://0.0.0.0:46656"
:本地監(jiān)聽46656
端口,別的節(jié)點如果想連我,就需要訪問我的46656
端口
seeds = "47.96.42.1:46656,172.104.224.219:46656,45.118.132.164:46656"
:比原啟動后,會主動連接這幾個地址獲取數(shù)據(jù)
使用不同的chain_id
去初始化時,會生成不同內(nèi)容的配置文件,那么這些內(nèi)容來自于哪里呢?
原來在config/toml.go#L22-L45,預(yù)定義了不同的模板內(nèi)容:
var defaultConfigTmpl = `# This is a TOML config file. # For more information, see https://github.com/toml-lang/toml fast_sync = true db_backend = "leveldb" api_addr = "0.0.0.0:9888" ` var mainNetConfigTmpl = `chain_id = "mainnet" [p2p] laddr = "tcp://0.0.0.0:46657" seeds = "45.79.213.28:46657,198.74.61.131:46657,212.111.41.245:46657,47.100.214.154:46657,47.100.109.199:46657,47.100.105.165:46657" ` var testNetConfigTmpl = `chain_id = "testnet" [p2p] laddr = "tcp://0.0.0.0:46656" seeds = "47.96.42.1:46656,172.104.224.219:46656,45.118.132.164:46656" ` var soloNetConfigTmpl = `chain_id = "solonet" [p2p] laddr = "tcp://0.0.0.0:46658" seeds = "" `
可以看到,原來這些端口號和seed的地址,都是事先寫好在模板里的。
而且,通過觀察這些配置,我們可以發(fā)現(xiàn),如果chain_id
不同,則監(jiān)聽的端口和連接的種子都不同:
mainnet(連接到主網(wǎng)): 46657
,會主動連接6個種子
testnet(連接到測試網(wǎng)): 46656
,會主動連接3個種子
solonet(本地單獨節(jié)點): 46658
,不會主動連接別人(也因此不會被別人連接上),適合單機研究
這里我們需要快速的把bytomd init
的執(zhí)行流程過一遍,才能清楚配置文件的寫入時機,也同時把前面的內(nèi)容串在了一起。
首先,當(dāng)我們運行bytomd init
時,它對應(yīng)的代碼入口為cmd/bytomd/main.go#L54:
func main() { cmd := cli.PrepareBaseCmd(commands.RootCmd, "TM", os.ExpandEnv(config.DefaultDataDir())) cmd.Execute() }
其中的config.DefaultDataDir()
就對應(yīng)于前面提到數(shù)據(jù)目錄位置。
然后執(zhí)行cmd.Execute()
,將根據(jù)傳入的參數(shù)init
,選擇下面的函數(shù)來執(zhí)行:cmd/bytomd/commands/init.go#L25-L24
func initFiles(cmd *cobra.Command, args []string) { configFilePath := path.Join(config.RootDir, "config.toml") if _, err := os.Stat(configFilePath); !os.IsNotExist(err) { log.WithField("config", configFilePath).Info("Already exists config file.") return } if config.ChainID == "mainnet" { cfg.EnsureRoot(config.RootDir, "mainnet") } else if config.ChainID == "testnet" { cfg.EnsureRoot(config.RootDir, "testnet") } else { cfg.EnsureRoot(config.RootDir, "solonet") } log.WithField("config", configFilePath).Info("Initialized bytom") }
其中的configFilePath
,就是config.toml
的寫入地址,即我們前面所說的數(shù)據(jù)目錄下的config.toml
文件。
cfg.EnsureRoot
將用來確認(rèn)數(shù)據(jù)目錄是有效的,并且將根據(jù)傳入的chain_id
不同,來生成不同的內(nèi)容寫入到配置文件中。
它對應(yīng)的代碼是config/toml.go#L10
func EnsureRoot(rootDir string, network string) { cmn.EnsureDir(rootDir, 0700) cmn.EnsureDir(rootDir+"/data", 0700) configFilePath := path.Join(rootDir, "config.toml") // Write default config file if missing. if !cmn.FileExists(configFilePath) { cmn.MustWriteFile(configFilePath, []byte(selectNetwork(network)), 0644) } }
可以看到,它對數(shù)據(jù)目錄進(jìn)行了權(quán)限上的確認(rèn),并且發(fā)現(xiàn)當(dāng)配置文件存在的時候,不會做任何更改。所以如果我們需要生成新的配置文件,就需要把舊的刪除(或改名)。
其中的selectNetwork(network)
函數(shù),實現(xiàn)了根據(jù)chain_id
的不同來組裝不同的配置文件內(nèi)容,它對應(yīng)于master/config/toml.go#L48:
func selectNetwork(network string) string { if network == "testnet" { return defaultConfigTmpl + testNetConfigTmpl } else if network == "mainnet" { return defaultConfigTmpl + mainNetConfigTmpl } else { return defaultConfigTmpl + soloNetConfigTmpl } }
果然就是一個簡單的字符串拼接,其中的defaultConfigTmpl
和*NetConfgTmpl
在前面已經(jīng)出現(xiàn),這里不重復(fù)。
最后調(diào)用第三方函數(shù)cmn.MustWriteFile(configFilePath, []byte(selectNetwork(network)), 0644)
,把拼接出來的配置文件內(nèi)容以權(quán)限0644
寫入到指定的文件地址。
“bytom初始化時產(chǎn)生了什么配置文件”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!