b6df028839
变更摘要: - [fix] 清理根目录 index.html 遗留代码(questionnaire-error + retryLoad 移除) - [fix] 副标题同步更新为自估591分 + 候选志愿546条数据校准 - [fix] 页脚注入版本号 v1.0.0 - [fix] 部署版 index.html: 取消家长标签,统一 filler-tianheng - [fix] Dashboard 文案修正(4份→2份线上问卷) - [fix] 清理冗余部署脚本(v1-v4归档至 archived_scripts/) - [fix] 等效位次工具纳入 deploy 目录 - [chore] .gitignore 初始化 - [init] Git 仓库初始化
38 lines
1.1 KiB
Python
38 lines
1.1 KiB
Python
import paramiko, time
|
|
|
|
NAS_HOST = "100.85.152.112"
|
|
NAS_PORT = 22
|
|
NAS_USER = "simon"
|
|
NAS_PASS = "Nas82829330"
|
|
|
|
def exec_and_read(c, cmd, wait=3):
|
|
stdin, stdout, stderr = c.exec_command(cmd)
|
|
time.sleep(wait)
|
|
while not stdout.channel.exit_status_ready():
|
|
time.sleep(0.2)
|
|
out = stdout.read().decode("utf-8", errors="replace")
|
|
err = stderr.read().decode("utf-8", errors="replace")
|
|
return out, err
|
|
|
|
def main():
|
|
c = paramiko.SSHClient()
|
|
c.set_missing_host_key_policy(paramiko.AutoAddPolicy())
|
|
c.connect(NAS_HOST, NAS_PORT, NAS_USER, NAS_PASS, timeout=15)
|
|
|
|
docker = "echo 'Nas82829330' | sudo -S /usr/local/bin/docker"
|
|
path = "/volume1/docker/gaokao-portal"
|
|
|
|
# 检查后端日志
|
|
out, err = exec_and_read(c, f"cd {path} && {docker} compose logs backend --tail=30", wait=5)
|
|
print("=== 后端日志 ===")
|
|
print(out[:1500])
|
|
|
|
# 检查 nginx 日志
|
|
out, err = exec_and_read(c, f"cd {path} && {docker} compose logs nginx --tail=10", wait=3)
|
|
print("\n=== Nginx 日志 ===")
|
|
print(out[:800])
|
|
|
|
c.close()
|
|
|
|
if __name__ == "__main__":
|
|
main() |