0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

暗号資産ライトコイン(LTC)のフルノードを構築する方法

Posted at

要 旨

暗号資産ライトコイン(LTC)のフルノードを構築する方法(CLI)について記述します。

実行環境等

VPS:KAGOYA VPS
OS:Ubuntu22.04LTS
CPU/メモリ:4コア/4GB
ストレージ:600GB SSD
料金 95円/日、2,640円/月(2024.7.21時点)
同期開始:2024.7.21(日)06:00
同期完了:2024.7.21(日)16:00
同期に要した時間:10時間00分
使用ストレージ容量:377GB

実施要領

アップデート

apt update

ウォレットのインストール

wget https://github.com/litecoin-project/litecoin/releases/download/v0.21.3/litecoin-0.21.3-x86_64-linux-gnu.tar.gz

展開する。

tar -xzvf litecoin-0.21.3-x86_64-linux-gnu.tar.gz

不要になったファイルの削除

rm litecoin-0.21.3-x86_64-linux-gnu.tar.gz

ディレクトリの移動

cd litecoin-0.21.3/bin

コマンドをインストールする

install -m 0755 -o root -g root -t /usr/local/bin *

litecoindの起動

litecoind

起動を確認したら(1分経過したら)、一旦停止させる。
ctr + C
~/.litecoin/litecoin.confを編集する。

vi ~/.litecoin/litecoin.conf

以下を記述して、保存する。

mainnet=1
daemon=1
server=1
rpcuser=rpcuser
rpcpassword=rpcpassword
rpcport=9332
gen=1
genproclimit=-1

再度litecoindを起動させて、同期させる。

litecoind

同期状態の確認。

tail -f ~/.litecoin/debug.log

結 言

今回は、暗号資産ライトコイン(LTC)のフルノードを構築する方法(CLI)について記述しました。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?