您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關linux如何安裝go語言及ethereum,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
安裝go語言
# cd /usr/local/go
# wget https://dl.google.com/go/go1.10.1.linux-amd64.tar.gz
# tar -xvf go1.10.1.linux-amd64.tar.gz
# sudo vi /etc/profile
export GO_HOME="/usr/local/go/go"
export JAVA_HOME="/usr/local/jdk1.8.0_144"
export CATALINA_HOME="/usr/local/apache-tomcat-9.0.0.M22"
export PATH=$PATH:$GO_HOME/bin:$JAVA_HOME/bin:$CATALINA_HOME/bin
export CLASSPATH=$JAVA_HOME/jre/lib/tools.jar:$JAVA_HOME/bin/tools.jar:$JAVA_HOME/common/lib/servlet-api.jar
# source /etc/profile
# go version
go version go1.10.1 linux/amd64
然后安裝ethereum# cd /usr/local/ethereum
# wget https://github.com/ethereum/go-ethereum/archive/v1.8.3.tar.gz
# tar -xvf v1.8.3.tar.gz
# cd go-ethereum-1.8.3/
# make geth
運行geth
$ nohup /usr/local/ethereum/go-ethereum-1.8.3/build/bin/geth --cache 256 --identity "itari" --gcmode archive --datadir /usr/local/ethereum/private/data0 --networkid 898 --port 30303 --rpc --rpcaddr 0.0.0.0 --rpcport 8545 --rpcapi "db,web3,eth,personal,miner,net,txpool" --rpccorsdomain "*" &
--cache 256:這個參數設置內存大小,單位M,默認128,如果設置成1024,一會就掛了
交互命令
$ /usr/local/ethereum/go-ethereum-1.8.3/build/bin/geth attach ipc:/usr/local/ethereum/private/data0/geth.ipc
備注:香港服務器裝好后必須指定路徑/usr/local/ethereum/go-ethereum-1.8.3/build/bin/geth
看完上述內容,你們對linux如何安裝go語言及ethereum有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。