Titan-Network/duokai.sh

93 lines
3.4 KiB
Bash
Raw Normal View History

2024-03-15 10:31:28 +00:00
#!/bin/bash
2024-03-18 08:46:50 +00:00
# 检查是否以root用户运行脚本
if [ "$(id -u)" != "0" ]; then
echo "此脚本需要以root用户权限运行。"
2024-03-18 10:12:21 +00:00
echo "请尝试使用 'sudo -i' 命令切换到root用户然后再次运行此脚本。"
2024-03-18 08:46:50 +00:00
exit 1
fi
2024-03-15 10:38:39 +00:00
echo "脚本以及教程由推特用户大赌哥 @y95277777 编写,免费开源,请勿相信收费"
echo "================================================================"
echo "节点社区 Telegram 群组:https://t.me/niuwuriji"
echo "节点社区 Telegram 频道:https://t.me/niuwuriji"
2024-04-13 08:27:36 +00:00
echo "节点社区 Discord 社群:https://discord.gg/GbMV5EcNWF"
2024-03-15 10:31:28 +00:00
# 读取加载身份码信息
read -p "输入你的身份码: " id
2024-03-18 08:46:50 +00:00
# 让用户输入想要创建的容器数量
2024-03-18 10:49:55 +00:00
read -p "请输入你想要创建的节点数量单IP限制最多5个节点: " container_count
2024-03-18 08:20:48 +00:00
2024-04-27 15:22:03 +00:00
# 让用户输入起始 RPC 端口号
read -p "请输入你想要设置的起始 RPC 端口号: " start_rpc_port
2024-03-24 16:24:38 +00:00
# 让用户输入想要分配的空间大小
2024-03-25 12:04:38 +00:00
read -p "请输入你想要分配每个节点的存储空间大小GB单个上限64G, 网页生效较慢等待20分钟后网页查询即可: " storage_gb
# 让用户输入存储路径(可选)
read -p "请输入节点存储数据的宿主机路径(直接回车将使用默认路径 titan_storage_$i,依次数字顺延): " custom_storage_path
2024-03-24 16:24:38 +00:00
2024-03-15 10:31:28 +00:00
apt update
# 检查 Docker 是否已安装
if ! command -v docker &> /dev/null
then
echo "未检测到 Docker正在安装..."
2024-03-25 12:04:38 +00:00
apt-get install ca-certificates curl gnupg lsb-release -y
2024-03-17 08:04:41 +00:00
2024-03-15 10:31:28 +00:00
# 安装 Docker 最新版本
2024-03-18 09:15:55 +00:00
apt-get install docker.io -y
2024-03-15 10:31:28 +00:00
else
echo "Docker 已安装。"
fi
# 拉取Docker镜像
2024-04-11 02:32:26 +00:00
docker pull nezha123/titan-edge:1.4
2024-03-15 10:31:28 +00:00
2024-03-18 08:20:48 +00:00
# 创建用户指定数量的容器
2024-04-27 15:22:03 +00:00
for ((i=1; i<=container_count; i++))
2024-03-15 10:31:28 +00:00
do
2024-04-27 15:22:03 +00:00
current_rpc_port=$((start_rpc_port + i - 1))
2024-03-25 12:04:38 +00:00
# 判断用户是否输入了自定义存储路径
if [ -z "$custom_storage_path" ]; then
# 用户未输入,使用默认路径
storage_path="$PWD/titan_storage_$i"
else
# 用户输入了自定义路径,使用用户提供的路径
storage_path="$custom_storage_path"
fi
# 确保存储路径存在
mkdir -p "$storage_path"
2024-03-15 10:31:28 +00:00
# 运行容器并设置重启策略为always
2024-04-27 13:43:32 +00:00
container_id=$(docker run -d --restart always -v "$storage_path:/root/.titanedge/storage" --name "titan$i" --net=host nezha123/titan-edge:1.4)
2024-03-15 10:31:28 +00:00
2024-03-19 03:51:33 +00:00
echo "节点 titan$i 已经启动 容器ID $container_id"
2024-03-15 10:31:28 +00:00
2024-03-19 03:51:33 +00:00
sleep 30
2024-03-25 00:31:53 +00:00
2024-04-27 15:22:03 +00:00
# 修改宿主机上的config.toml文件以设置StorageGB值和端口
2024-03-26 14:59:16 +00:00
docker exec $container_id bash -c "\
2024-04-27 15:22:03 +00:00
sed -i 's/^[[:space:]]*#StorageGB = .*/StorageGB = $storage_gb/' /root/.titanedge/config.toml && \
sed -i 's/^[[:space:]]*#ListenAddress = \"0.0.0.0:1234\"/#ListenAddress = \"0.0.0.0:$current_rpc_port\"/' /root/.titanedge/config.toml && \
echo '容器 titan'$i' 的存储空间设置为 $storage_gb GBRPC 端口设置为 $current_rpc_port'"
done
2024-03-26 14:49:55 +00:00
2024-04-27 15:22:03 +00:00
# 重启所有docker容器 让设置的磁盘容量生效
docker restart $(docker ps -a -q)
2024-03-24 16:24:38 +00:00
2024-04-27 15:22:03 +00:00
# 执行绑定命令
for ((i=1; i<=container_count; i++))
do
container_id=$(docker ps -aqf "name=titan$i")
# 进入容器并执行绑定命令
docker exec $container_id bash -c "\
titan-edge bind --hash=$id https://api-test1.container1.titannet.io/api/v2/device/binding"
echo "节点 titan$i 已绑定."
2024-03-25 04:13:36 +00:00
done
2024-04-27 15:22:03 +00:00
echo "==============================所有节点均已设置并启动==================================="