Update Quilibrium.sh

This commit is contained in:
smeb y 2024-03-03 23:13:58 +08:00 committed by GitHub
parent 8efaae9b9a
commit b87abbc466
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -91,7 +91,104 @@ screen -dmS Quili bash -c './poor_mans_cd.sh'
}
# 查看节点日志
# 节点安装功能
function install_node_service() {
# 检查是否以root用户执行脚本
if [ "$(id -u)" != "0" ]; then
echo "该脚本必须以root权限运行" 1>&2
exit 1
fi
# 增加swap空间
sudo mkdir /swap
sudo fallocate -l 24G /swap/swapfile
sudo chmod 600 /swap/swapfile
sudo mkswap /swap/swapfile
sudo swapon /swap/swapfile
echo '/swap/swapfile swap swap defaults 0 0' >> /etc/fstab
# 向/etc/sysctl.conf文件追加内容
echo -e "\n# 自定义最大接收和发送缓冲区大小" >> /etc/sysctl.conf
echo "net.core.rmem_max=600000000" >> /etc/sysctl.conf
echo "net.core.wmem_max=600000000" >> /etc/sysctl.conf
echo "配置已添加到/etc/sysctl.conf"
# 重新加载sysctl配置以应用更改
sysctl -p
echo "sysctl配置已重新加载"
# 更新并升级Ubuntu软件包
sudo apt update && sudo apt -y upgrade
# 安装wget、screen和git等组件
sudo apt install git ufw bison screen binutils gcc make -y
# 安装GVM
bash < <(curl -s -S -L https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer)
source /root/.gvm/scripts/gvm
gvm install go1.4 -B
gvm use go1.4
export GOROOT_BOOTSTRAP=$GOROOT
gvm install go1.17.13
gvm use go1.17.13
export GOROOT_BOOTSTRAP=$GOROOT
gvm install go1.20.2
gvm use go1.20.2
# 克隆仓库
git clone https://github.com/quilibriumnetwork/ceremonyclient
# 进入ceremonyclient/node目录
cd ceremonyclient/node
# 构建服务
GOEXPERIMENT=arenas go install ./...
# 写入服务
sudo tee /lib/systemd/system/ceremonyclient.service > /dev/null <<EOF
[Unit]
Description=Ceremony Client GO App Service
[Service]
Type=simple
Restart=always
RestartSec=5S
WorkingDirectory=/root/ceremonyclient/node
Environment=GOEXPERIMENT=arenas
ExecStart=/root/.gvm/pkgsets/go1.20.2/global/bin/node ./...
[Install]
WantedBy=multi-user.target
EOF
# 重新加载 systemd 并启用并启动服务
sudo systemctl daemon-reload
sudo systemctl enable ceremonyclient
sudo systemctl start ceremonyclient
# 完成安装提示
echo ====================================== 安装完成 =========================================
}
# 查看服务版本状态
function check_ceremonyclient_service_status() {
systemctl status ceremonyclient
}
# 服务版本节点日志查询
function view_logs() {
sudo journalctl -f -u ceremonyclient.service
}
# 查看常规版本节点日志
function check_service_status() {
screen -r Quili
@ -107,15 +204,21 @@ function main_menu() {
echo "节点社区 Telegram 群组:https://t.me/niuwuriji"
echo "节点社区 Telegram 频道:https://t.me/niuwuriji"
echo "请选择要执行的操作:"
echo "1. 安装节点"
echo "2. 查看节点日志"
echo "3. 设置快捷键的功能"
echo "1. 安装常规节点"
echo "2. 查看常规版本节点日志"
echo "3. 安装服务版本节点"
echo "4. 查看服务版本节点日志"
echo "5. 查看服务版本服务状态"
echo "6. 设置快捷键的功能"
read -p "请输入选项1-3: " OPTION
case $OPTION in
1) install_node ;;
2) check_service_status ;;
3) check_and_set_alias ;;
3) install_node_service ;;
4) view_logs ;;
5) check_ceremonyclient_service_status ;;
6) check_and_set_alias ;;
*) echo "无效选项。" ;;
esac
}