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?

暗号資産UltronAI(UTO)のフルノードを構築する方法

Posted at

要 旨

暗号資産UltronAI(UTO)のフルノードを構築する方法(CLI)について記述します。

実行環境等

VPS:KAGOYA VPS
OS:Ubuntu22.04LTS
CPU/メモリ:2コア/2GB
ストレージ:200GB SSD
料金 32円/日、880円/月(2024.8.18時点)
同期開始:2024.8.18(日)06:00
同期完了:2024.8.18(日)07:00
同期に要した時間:1時間00分
使用ストレージ容量:10GB

実施要領

アップデート

apt update

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

wget https://github.com/aidevpin/core/releases/download/v1.0/wallet-linux-gnu-v1.0.zip

unzipのインストール

apt install unzip

展開する。

unzip wallet-linux-gnu-v1.0.zip

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

rm wallet-linux-gnu-v1.0.zip

実行権限の付与

chmod +x *

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

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

ultronaidの起動

ultronaid

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

vi ~/.ultronaicore/ultronai.conf

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

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

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

ultronaid

同期状態の確認。

tail -f ~/.ultronaicore/debug.log

結 言

今回は、暗号資産UltronAI(UTO)のフルノードを構築する方法(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?