ADA 主网钱包linux安装(我们的世界在变化。我们可以一起改善它。)

1.创建用户adauser

useradd adauser
passwd adauser

2.给adauser添加权限
将/etc/sudoers添加修改权限

chmod u+w /etc/sudoers

找到root ALL=(ALL:ALL) ALL这行
在下面添加一行

adauser    ALL=(ALL)       ALL

将/etc/sudoers修改权限关闭

chmod u-w /etc/sudoers

3.切换到adauser用户下

su adauser

4.安装nix

sh <( curl -L https://nixos.org/nix/install) --daemon

5.nix安装失败
切换到root用户下执行下面的命令

rm -rf /etc/nix /nix /root/.nix-profile /root/.nix-defexpr /root/.nix-channels /home/adauser/.nix-profile /home/adauser/.nix-defexpr /home/adauser/.nix-channels  /home/adauser/.bash_profile  /home/adauser/.bash_login  /home/adauser/.profile /etc/profile.d/nix.sh.backup-before-nix /etc/profile.d/nix.sh

6.nix安装完成切换到root用户下
7.源码安装ada节点
如果没有安装git按照下面执行

yum install -y git*

如果安装git按照下面执行

git clone https://github.com/input-output-hk/cardano-sl.git
cd cardano-sl
git checkout master

8.构建网络
如果第一次按照nix,在/etc/nix/nix.conf文件中添加下面的内容

substituters= https://hydra.iohk.io https://cache.nixos.org
trusted-substituters =
trusted-public-keys  = hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=

然后执行

source /etc/profile.d/nix.sh

这个时候nix就配置好了
开始构建ada网络
进入git下来的代码cardano-sl文件夹当中执行下面的操作
正式网络构建命令

nix-build -A connectScripts.mainnet.wallet -o mainnet.sh

测试网络构建命令

nix-build -A connectScripts.testnet.wallet -o testnet.sh

构建时间有点长,耐心等待就好
构建完成之后在cardano-sl文件夹下就会出现mainnet.sh或者是testnet.sh文件
后面就可以使用testnet.sh或者mainnet.sh执行
9.配置外网访问
在mainnet.sh或者testnet.sh文件当中找到--wallet-address 127.0.0.1:8090 修改为--wallet-address 0.0.0.0:8090 (开启tcp外网访问)
10.关闭ca证书验证
在修改外网访问的时候添加下面一条配置

--no-client-auth

11.钱包操作api推荐

https://docs.cardano.org/en/latest/#

12.如果搭建遇到问题,请留言。

上一篇:Zabbix 3.2.6 通过SNMP和iDRAC监控DELL服务器


下一篇:处理json中影响解析的多余引號