| ini_content = {"username":"lixuhs875","key":"642ac670e3e0f7a237b53919592582c5"} |
| frp_url = '47.237.156.222' |
| ssh_port = '7072' |
| st_url = f'http://{frp_url}:7070' |
| huggingface_name = 'lixuhs875' |
| huggingface_Data_name = 'qilan-st1' |
| config_data = f""" |
| [common] |
| server_addr = {frp_url} |
| server_port = 7000 |
| |
| [safgha] |
| type = tcp |
| local_ip = 127.0.0.1 |
| local_port = 8000 |
| remote_port = 7070 |
| [safabf] |
| type = tcp |
| local_ip = 127.0.0.1 |
| local_port = 22 |
| remote_port = {ssh_port} |
| [saffg] |
| type = tcp |
| local_ip = 127.0.0.1 |
| local_port = 3000 |
| remote_port = 7071 |
| """ |
| config_data2 = """ |
| [common] |
| server_addr = 8.137.94.137 |
| server_port = 7000 |
| [safgha] |
| type = tcp |
| local_ip = 127.0.0.1 |
| local_port = 8000 |
| remote_port = 7070 |
| """ |
|
|
| kaggle_metadata = { |
| "title": "Your Dataset Title", |
| "id": f"{huggingface_name}/{huggingface_Data_name}", |
| "licenses": [{"name": "CC0-1.0"}] |
| } |
| st_status = True |
| import subprocess |
| import os |
| import sys |
| from IPython.display import clear_output |
| import urllib.request |
| from pathlib import Path |
| import requests |
| import json |
| import threading |
| import time |
| import pexpect |
| import glob |
| from requests.adapters import HTTPAdapter |
| from requests.packages.urllib3.util.retry import Retry |
| os.system("rm -r /sync.sh") |
| os.system("wget -O /sync.sh https://huggingface.co/datasets/Qilan2/st-server/resolve/main/sync.sh") |
| os.system("export LC_ALL=zh_CN.UTF-8") |
| |
| def is_installed(package): |
| """Check if a package is installed.""" |
| try: |
| |
| subprocess.run(['dpkg', '-s', package], stdout=subprocess.PIPE, stderr=subprocess.PIPE) |
| return True |
| except Exception as e: |
| return False |
|
|
| def install_package(package): |
| """Install a package using apt.""" |
| print(f"Installing {package}...") |
| os.system(f"sudo apt install {package} -y") |
| def update(): |
| print('-----------更新软件包列表开始-------------') |
| |
| |
| |
| |
| |
| if not is_installed('nodejs'): |
| install_package('nodejs') |
| |
| if not is_installed('npm'): |
| install_package('npm') |
| |
| os.system("sudo apt install p7zip-full -y") |
| os.system("pip install -U kaggle") |
| |
| os.system("pip install ruamel.yaml") |
| os.system("pip install pexpect") |
| os.system('apt-get install pigz') |
| os.system('apt-get install pv') |
| print('-----------更新软件包列表结束-------------') |
| update() |
|
|
|
|
| from ruamel.yaml import YAML |
| clear_output(wait=True) |
|
|
| def kill_frpc_processes(): |
| try: |
| |
| subprocess.run(['pkill', '-f', 'frpc'], check=True) |
| print("所有frpc进程已被结束。") |
| except subprocess.CalledProcessError as e: |
| |
| print(f"结束frpc进程时出错: {e}") |
| kill_frpc_processes() |
|
|
|
|
| |
| def Oneapi(): |
| print('-----------Oneapi中转开始-------------') |
| |
| os.system("rm -rf /one/one-api") |
| os.system("mkdir -p /one") |
| |
| url = "https://github.com/songquanpeng/one-api/releases/download/v0.6.8/one-api" |
| os.system(f"wget {url} -O /one/one-api") |
| |
| os.system("chmod +x /one/one-api") |
| |
| os.environ["THEME"] = "berry" |
| os.environ["TIKTOKEN_CACHE_DIR"] = os.getcwd() |
| |
| db_user = "oneapi" |
| db_password = "epBjK5ZKysCe6yr3" |
| db_host = "106.52.51.116" |
| db_port = "3306" |
| db_name = "oneapi" |
| dsn = f"{db_user}:{db_password}@tcp({db_host}:{db_port})/{db_name}" |
| os.environ["SQL_DSN"] = dsn |
| command = ['/one/one-api', '--port', '3000'] |
| process = subprocess.Popen(command) |
| print(f"OneAPI程序已在后台启动,进程ID为:{process.pid}") |
| print('-----------Oneapi中转结束-------------') |
| |
|
|
| |
| def run_command(command): |
| try: |
| subprocess.run(command, check=True, shell=True) |
| except subprocess.CalledProcessError as e: |
| print(f"An error occurred: {e}") |
| def ssh(): |
| print('-----------SSH开始-------------') |
| subprocess.run("apt update", check=True, shell=True) |
| subprocess.run("apt install openssh-server -y", check=True, shell=True) |
| subprocess.run("apt-get install vim -y", check=True, shell=True) |
| |
| config_client_cmd = "sudo sed -i '/PasswordAuthentication/s/^#//g' /etc/ssh/ssh_config" |
| subprocess.run(config_client_cmd, check=True, shell=True) |
| config_server_cmd = "sudo sed -i '/PermitRootLogin prohibit-password/s/prohibit-password/yes/' /etc/ssh/sshd_config" |
| subprocess.run(config_server_cmd, check=True, shell=True) |
| run_command("systemctl restart ssh") |
|
|
| os.system("/etc/init.d/ssh restart") |
| os.system("echo 'root:qilan' | sudo chpasswd") |
| os.system("echo 'PermitRootLogin yes' | sudo tee -a /etc/ssh/sshd_config") |
| os.system("service ssh restart ") |
| os.system("export LD_LIBRARY_PATH=$(echo $LD_LIBRARY_PATH | tr ':' '\n' | grep -v '/opt/conda/lib' | paste -sd ':') ") |
| print('-----------SSH结束-------------') |
| ssh() |
| clear_output() |
|
|
| import json |
| import os |
| import subprocess |
| import threading |
| import time |
|
|
| |
| lock = threading.Lock() |
| |
| |
| data_folder = '/root/SillyTavern' |
| zip_file_path = '/a/sillytavern.tar.gz' |
| metadata_file_path = '/a/dataset-metadata.json' |
| last_uploaded_size = -1 |
|
|
| def update_last_uploaded_size(size): |
| global last_uploaded_size |
| last_uploaded_size = size |
|
|
| def compress_folder(): |
| global last_uploaded_size |
|
|
| |
| if os.path.exists('/a'): |
| subprocess.run(['rm', '-r', '/a/']) |
|
|
| os.makedirs('/a', exist_ok=True) |
|
|
| with lock: |
| if os.path.exists(zip_file_path): |
| print(f"压缩文件 {zip_file_path} 已存在,跳过本次压缩。") |
| return |
| |
| print('开始压缩数据') |
| |
| |
| |
| try: |
| result = subprocess.run( |
| f'tar -cvf - {data_folder} | pigz -p 6 -1 > {zip_file_path} 2> /dev/null', |
| shell=True, |
| check=True, |
| stdout=subprocess.DEVNULL, |
| stderr=subprocess.DEVNULL |
| ) |
| except subprocess.CalledProcessError as e: |
| print(f"Command failed with return code {e.returncode}") |
|
|
| print('重命名压缩后的文件') |
| file_path = "/a/sillytavern.ctk" |
| print(zip_file_path) |
| |
| subprocess.run(['mv', zip_file_path,file_path]) |
| if result.returncode != 0: |
| print("压缩失败,请检查7z命令是否正确") |
| return |
|
|
| print(f"Data compressed into {file_path}") |
| |
| file_size = os.path.getsize(file_path) |
| print('文件大小:', file_size, '上次文件大小:', last_uploaded_size,file_size * 1024 ** 2) |
| |
| |
| if file_size < (400 * 1024 ** 2): |
| print("文件小于800MB,不进行上传。") |
| return |
| |
| if last_uploaded_size == -1 or file_size != last_uploaded_size: |
| |
| if last_uploaded_size == -1: |
| print("首次运行,正在执行上传...") |
| update_last_uploaded_size(file_size) |
|
|
| with open(metadata_file_path, 'w') as json_fid: |
| json.dump(kaggle_metadata, json_fid) |
| os.system("kaggle datasets version -m 'new version message' -p /a") |
| |
| |
| last_uploaded_size = file_size |
| |
| elif file_size > last_uploaded_size: |
| print(f"新文件 {zip_file_path} 大于上次上传的大小,正在执行上传...") |
| update_last_uploaded_size(file_size) |
|
|
| with open(metadata_file_path, 'w') as json_fid: |
| json.dump(kaggle_metadata, json_fid) |
|
|
| subprocess.run(['kaggle', 'datasets', 'version', '-m', 'new version message', '-p', '/a']) |
| last_uploaded_size = file_size |
| |
| else: |
| print(f"新文件 {zip_file_path} 不大于上次上传的大小,跳过") |
|
|
|
|
| def repeat_task(): |
| print('------打包线程启动-------------') |
| while True: |
| print('等待打包') |
| time.sleep(600) |
| compress_folder() |
| print('------打包线程结束-------------') |
| |
| |
|
|
| import os |
| import subprocess |
| import pexpect |
|
|
| def generate_ssh_key(): |
| |
| os.system("rm -f ~/.ssh/id_rsa ~/.ssh/id_rsa.pub") |
| keygen_command = "ssh-keygen -t rsa -b 2048 -f ~/.ssh/id_rsa -N ''" |
| try: |
| result = subprocess.run(keygen_command, shell=True, check=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) |
| print("SSH key pair generated.") |
| print(result.stdout.decode()) |
| except subprocess.CalledProcessError as e: |
| print(f"Failed to generate SSH key: {e.stderr.decode() if e.stderr else e}") |
|
|
| def copy_public_key_to_remote(host, port, user, password): |
| |
| try: |
| command = f"ssh-copy-id -o StrictHostKeyChecking=no -p {port} {user}@{host}" |
| child = pexpect.spawn(command) |
|
|
| |
| child.expect("password:", timeout=10) |
| child.sendline(password) |
|
|
| |
| child.expect(pexpect.EOF) |
| |
| print(child.before.decode()) |
| |
| except Exception as e: |
| print(f"An error occurred: {e}") |
|
|
|
|
| |
| generate_ssh_key() |
|
|
| |
| copy_public_key_to_remote(frp_url, ssh_port, "root", "qilan") |
| |
|
|
|
|
| def requests_retry_session(retries=3, backoff_factor=0.3, status_forcelist=(500, 502, 504), session=None): |
| """创建一个带重试机制的请求会话""" |
| session = session or requests.Session() |
| retry = Retry(total=retries, backoff_factor=backoff_factor, status_forcelist=status_forcelist) |
| adapter = HTTPAdapter(max_retries=retry) |
| session.mount('http://', adapter) |
| session.mount('https://', adapter) |
| return session |
|
|
| def check_api1(): |
| |
| thread_started = False |
| n=0 |
| while True: |
| n = n + 1 |
| if not os.path.exists(data_folder): |
| print(f"/sillytavern/ 文件不存在,结束检测") |
| break |
| try: |
| url = "http://127.0.0.1:8000/v1" |
| response = requests.get(url, timeout=30) |
|
|
| |
| if response.status_code == 403: |
| print("SillyTavern已经启动") |
| threading.Thread(target=Oneapi, daemon=True).start() |
| break |
| |
| |
| print("SillyTavern未启动,状态码:", response.status_code,n) |
|
|
| except requests.exceptions.RequestException as e: |
| print(f"SillyTavern未启动3",n) |
| |
| time.sleep(5) |
| |
| print('开始检测接口状态') |
| Service_status = False |
| |
| n = 0 |
| nn = 0 |
| while True: |
| n = n + 1 |
| if not os.path.exists(data_folder): |
| print(f"/sillytavern/ 文件不存在,结束检测") |
| break |
| if Service_status: |
| print("结束检测") |
| break |
| url = f"{st_url}/csrf-token" |
| try: |
| response = requests_retry_session().get(url, timeout=30) |
| response.raise_for_status() |
| |
| response_json = response.json() |
| print(url,"接口返回信息:", response_json) |
| if "token" in response_json: |
| print("检测到 token") |
| nn = 0 |
| try: |
| subprocess.run(f"rsync -avz -e 'ssh -p {ssh_port} -o StrictHostKeyChecking=no' root@{frp_url}:{data_folder}/ {data_folder}/", shell=True, check=True) |
| except subprocess.CalledProcessError as e: |
| print(f"Rsync 失败,返回码: {e.returncode}") |
| print(f"Command output: {e.output}") |
| generate_ssh_key() |
| |
| |
| else: |
| print("接口返回信息:", response_json) |
| except requests.exceptions.ConnectionError as e: |
| print(f"接口异常1",n) |
| |
| nn = nn + 1 |
| if nn == 10: |
| break |
| |
| except requests.exceptions.Timeout as e: |
| print(f"接口异常2",n) |
| |
| break |
| |
| except requests.exceptions.RequestException as e: |
| print(f"接口异常3:",n) |
| |
| break |
| |
| time.sleep(2) |
|
|
|
|
| def frp(config_data1,config_file_path,backstage): |
| print('-----------FRP开始-------------') |
| '''FRP配置''' |
| os.system("mkdir -p /content/frp") |
| os.system("wget /content/frp/frpc https://huggingface.co/Qilan2/box/resolve/main/frp/frpc -O /content/frp/frpc") |
| os.system("chmod +x /content/frp/frpc") |
| |
| with open(config_file_path, 'w') as config_file: |
| config_file.write(config_data1) |
| |
| frpc_cmd = ['/content/frp/frpc', '-c', config_file_path] |
| if backstage: |
| subprocess.Popen(frpc_cmd) |
| else: |
| subprocess.run(f'/content/frp/frpc -c {config_file_path}', shell=True, check=True) |
| print('-----------FPR结束-------------') |
| |
| |
| import requests |
| import re |
|
|
| def get_current_ip(): |
| """获取当前公共 IP 地址""" |
| response = requests.get("https://ipinfo.io/ip") |
| return response.text.strip() |
|
|
| def get_geo_info(ip_address): |
| """根据 IP 地址获取地理位置信息""" |
| url = f"https://api.qjqq.cn/api/Local" |
| headers = { |
| "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3" |
| } |
| |
| response = requests.get(url, headers=headers) |
| |
| if response.status_code == 200: |
| geo_info = response.json() |
| |
| if geo_info['code'] == 200: |
| data = geo_info['data'] |
| return { |
| 'ip': data['ip'], |
| 'country': data['country'], |
| 'isp': data['isp'] |
| } |
| else: |
| print("无法获取地理位置信息") |
| return None |
| else: |
| print(f"请求失败, 状态码: {response.status_code}") |
| return None |
|
|
| def replace_ip_and_country_in_file(file_path): |
| try: |
| |
| ip_address = get_current_ip() |
| print(f"获取到当前 IP: {ip_address}") |
| |
| |
| geo_info = get_geo_info(ip_address) |
| |
| if geo_info is not None: |
| print(f"获取到地理信息: {geo_info}") |
| |
| |
| with open(file_path, 'r', encoding='utf-8') as file: |
| content = file.read() |
| |
| |
| |
| pattern = r'IP\[.*?\]国家\[.*?\]ISP\[.*?\]' |
| replacement = f'IP[{geo_info["ip"]}]国家[{geo_info["country"]}]ISP[{geo_info["isp"]}]' |
| new_content = re.sub(pattern, replacement, content) |
| |
| |
| |
| |
| with open(file_path, 'w', encoding='utf-8') as file: |
| file.write(new_content) |
| |
| print(f"成功更新为: IP[{geo_info['ip']}] 国家[{geo_info['country']}] ISP[{geo_info['isp']}]") |
| |
| except FileNotFoundError: |
| print(f"错误: 文件 {file_path} 不存在。") |
| except IOError as e: |
| print(f"IO 错误: {e}") |
| except Exception as e: |
| print(f"发生其他错误: {e}") |
|
|
| import socket |
| import subprocess |
| import time |
|
|
| def monitor_port(): |
| while True: |
| with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as sock: |
| result = sock.connect_ex(('localhost', 8000)) |
| if result == 0: |
| print(f"端口 8000 正在使用中") |
| else: |
| print(f"端口 8000 未被使用") |
| |
| try: |
| process = subprocess.Popen(f'yes | sh {data_folder }/start.sh', shell=True) |
| print(f"已尝试启动 {data_folder }/start.sh") |
| time.sleep(20) |
| except Exception as e: |
| print(f"命令失败: {e}") |
| |
| time.sleep(5) |
|
|
| def SillyTavern(): |
| print('-----------SillyTavern开始-------------') |
| |
| os.system("mkdir -p ~/.kaggle") |
| file_path = '/root/.kaggle/kaggle.json' |
| with open(file_path, 'w') as json_file: |
| json.dump(ini_content, json_file, indent=4) |
| os.system("chmod 600 ~/.kaggle/kaggle.json") |
|
|
| clear_output() |
|
|
| os.system(f"rm -r /a /sillytavern /*.zi* {data_folder}") |
| os.system(f"mkdir -p {data_folder}") |
| os.chdir('/') |
| print(f"kaggle datasets download {huggingface_name}/{huggingface_Data_name}") |
| |
| while True: |
| |
| os.system(f"kaggle datasets download {huggingface_name}/{huggingface_Data_name} -p /") |
| |
| if os.path.exists(f'/{huggingface_Data_name}.zip'): |
| print(f"{huggingface_Data_name}.zip 下载成功!") |
| break |
| |
| print(f"{huggingface_Data_name}.zip 下载失败,正在重试...") |
| |
| time.sleep(5) |
| |
| |
| if not os.path.exists(f'/{huggingface_Data_name}.zip'): |
| print(f"文件 /{huggingface_Data_name}.zip 不存在,启用实时同步。") |
| generate_ssh_key() |
| copy_public_key_to_remote(frp_url, ssh_port, "root", "qilan") |
| subprocess.run(f"rsync -avz -e 'ssh -p {ssh_port} -o StrictHostKeyChecking=no' root@{frp_url}:{data_folder}/ {data_folder}/", shell=True, check=True) |
| |
| else: |
| |
| |
| print(f"文件 /{huggingface_Data_name}.zip 存在,继续执行程序。") |
| |
| |
| os.system("ls /") |
| os.system(f"7z x /{huggingface_Data_name}.zip -o/ -y") |
| |
| |
| os.system("mv /sillytavern.tck sillytavern.tar.gz") |
| os.system("mv /sillytavern.ctk sillytavern.tar.gz") |
| |
| os.system(f"tar -xvpf /sillytavern.tar.gz -C / --use-compress-program=pigz > /dev/null") |
| |
|
|
| |
| os.chdir(data_folder) |
| os.system(f"ls {data_folder}") |
| os.system("nvm install node") |
| os.system("nvm use node") |
| os.system("npm install -y") |
| try: |
| subprocess.run(f'yes | sh {data_folder}/start.sh', shell=True, check=True) |
| except subprocess.CalledProcessError as e: |
| print(f"Command '{e.cmd}' returned non-zero exit status {e.returncode}.") |
| print("Output:", e.output) |
| os.system(f"ls {data_folder}") |
| print('更新文件') |
| os.system('git pull') |
| subprocess.run(f'yes | sh {data_folder}/start.sh', shell=True, check=True) |
| subprocess.run(f'yes | sh {data_folder}/start.sh', shell=True, check=True) |
| subprocess.run(f'yes | sh {data_folder}/start.sh', shell=True, check=True) |
| subprocess.run(f'yes | sh {data_folder}/start.sh', shell=True, check=True) |
| print('-----------SillyTavern结束-------------') |
| threading.Thread(target=SillyTavern, daemon=True).start() |
| time.sleep(60) |
| check_api1() |
|
|
| if os.path.exists(f'{data_folder}/start.sh'): |
| replace_ip_and_country_in_file(f'{data_folder}/public/login.html') |
| |
| backup_thread = threading.Thread(target=repeat_task, daemon=True) |
| backup_thread.start() |
| print("开始衔接") |
| Service_status = True |
| frp(config_data2,'/content/frp/frpc2.ini',True) |
| frp(config_data,'/content/frp/frpc.ini',True) |
| |
| |
| |
| |
| |
| threading.Thread(target=monitor_port, daemon=True).start() |
| while True: |
| if backup_thread.is_alive(): |
| print("备份线程仍在运行...") |
| else: |
| print("备份线程已停止.") |
| backup_thread = threading.Thread(target=repeat_task, daemon=True) |
| backup_thread.start() |
| |
| time.sleep(5) |
|
|
| else: |
| print("/sillytavern 文件不存在结束执行") |
| compress_folder() |