File size: 1,804 Bytes
799a782
 
 
b4a1e45
 
 
 
 
799a782
b4a1e45
799a782
b4a1e45
3718037
b4a1e45
3718037
 
 
 
 
 
 
b4a1e45
799a782
 
 
 
3718037
 
 
b4a1e45
3718037
 
799a782
 
 
 
b4a1e45
799a782
 
 
b4a1e45
 
 
799a782
 
 
 
 
b4a1e45
799a782
b4a1e45
 
 
 
 
 
799a782
 
 
 
 
b4a1e45
799a782
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
- name: My first play
  hosts: hostgroup
  remote_user: root
  vars:
    app_name: scraper-proxy
    app_port: 7860
    deploy_path: /root/workspace/scraper-proxy
  
  tasks:
    - name: 停止特定应用服务
      shell: |
        pid=$(ps -ef | grep "uvicorn main:app" | grep "{{ app_port }}" | grep -v grep | awk '{print $2}')
        if [ -n "$pid" ]; then
          echo "Stopping {{ app_name }} process with PID: $pid"
          kill -15 $pid
          sleep 3
          if ps -p $pid > /dev/null 2>&1; then
            echo "Force killing process with PID: $pid"
            kill -9 $pid
          fi
        else
          echo "No running {{ app_name }} process found"
        fi
      args:
        executable: /bin/bash
      ignore_errors: yes
      
    - name: 确认服务已停止
      wait_for:
        port: "{{ app_port }}"
        state: stopped
        timeout: 30

    - name: 复制到远程服务器
      copy:
        src: archive/release.tar.gz
        dest: /root/deploy/{{ app_name }}.tar.gz

    - name: 解压文件
      shell: |
        rm -rf {{ deploy_path }}  
        mkdir -p {{ deploy_path }}
        tar -zxvf /root/deploy/{{ app_name }}.tar.gz -C {{ deploy_path }}
      args:
        executable: /bin/bash

    - name: 构建并运行
      shell: |
        cd {{ deploy_path }}
        pip install --no-cache-dir -r requirements.txt
        echo '#!/bin/bash
        cd {{ deploy_path }}
        exec uvicorn main:app --host 0.0.0.0 --port {{ app_port }}
        ' > {{ deploy_path }}/start.sh
        chmod +x {{ deploy_path }}/start.sh
        nohup {{ deploy_path }}/start.sh > {{ deploy_path }}/nohup.log 2>&1 &
      args:
        executable: /bin/bash

    - name: 等待服务启动
      wait_for:
        port: "{{ app_port }}"
        timeout: 30