1. BSC升级
1.1 BSC备份
bash
cp /data/apps/bsc/geth /data/apps/bsc/geth_bsc_v1.4.16
cp /data/apps/bsc/geth /data/apps/bsc/geth_bsc_v1.4.16
1.2 替换文件
- 下载最新文件
bash
wget $(curl -s https://api.github.com/repos/bnb-chain/bsc/releases/latest |grep browser_ |grep geth_linux |cut -d\" -f4)
cp geth_linux /data/apps/bsc/geth_bsc_v1.4.16
chmod -v +x /data/apps/bsc/geth_bsc_v1.4.16
wget $(curl -s https://api.github.com/repos/bnb-chain/bsc/releases/latest |grep browser_ |grep geth_linux |cut -d\" -f4)
cp geth_linux /data/apps/bsc/geth_bsc_v1.4.16
chmod -v +x /data/apps/bsc/geth_bsc_v1.4.16
- 停止服务
bash
$ pid=`ps -ef | grep geth | grep -v grep | awk '{print $2}'`
$ kill -15 $pid
$ pid=`ps -ef | grep geth | grep -v grep | awk '{print $2}'`
$ kill -15 $pid
- 启动服务
bash
systemctl start bsc
systemctl start bsc