Auto-update: Thu Aug 8 15:55:29 PDT 2024
This commit is contained in:
parent
f685e297fc
commit
ceb5835dd4
1 changed files with 80 additions and 9 deletions
|
@ -6,6 +6,8 @@ from pathlib import Path
|
||||||
import logging
|
import logging
|
||||||
import subprocess
|
import subprocess
|
||||||
import os
|
import os
|
||||||
|
import argparse
|
||||||
|
import sys
|
||||||
|
|
||||||
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
|
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
|
||||||
|
|
||||||
|
@ -32,7 +34,6 @@ def check_server(ip, port, ts_id):
|
||||||
try:
|
try:
|
||||||
response = requests.get(address, timeout=5)
|
response = requests.get(address, timeout=5)
|
||||||
response_text = response.text.strip().strip('"')
|
response_text = response.text.strip().strip('"')
|
||||||
|
|
||||||
return response.status_code == 200 and response_text == ts_id
|
return response.status_code == 200 and response_text == ts_id
|
||||||
except requests.RequestException as e:
|
except requests.RequestException as e:
|
||||||
logging.error(f"Error checking server {ts_id}: {str(e)}")
|
logging.error(f"Error checking server {ts_id}: {str(e)}")
|
||||||
|
@ -98,6 +99,41 @@ def start_remote_server(server):
|
||||||
finally:
|
finally:
|
||||||
ssh.close()
|
ssh.close()
|
||||||
|
|
||||||
|
def kill_local_server():
|
||||||
|
try:
|
||||||
|
if is_local_tmux_session_running('sijapi'):
|
||||||
|
subprocess.run(['tmux', 'kill-session', '-t', 'sijapi'], check=True)
|
||||||
|
logging.info("Killed local sijapi tmux session.")
|
||||||
|
else:
|
||||||
|
logging.info("No local sijapi tmux session to kill.")
|
||||||
|
except subprocess.CalledProcessError as e:
|
||||||
|
logging.error(f"Failed to kill local sijapi tmux session. Error: {e}")
|
||||||
|
|
||||||
|
def kill_remote_server(server):
|
||||||
|
ssh = paramiko.SSHClient()
|
||||||
|
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
|
||||||
|
|
||||||
|
try:
|
||||||
|
ssh.connect(
|
||||||
|
server['ts_ip'],
|
||||||
|
port=server['ssh_port'],
|
||||||
|
username=server['ssh_user'],
|
||||||
|
password=server['ssh_pass'],
|
||||||
|
timeout=10
|
||||||
|
)
|
||||||
|
|
||||||
|
command = f"{server['tmux']} kill-session -t sijapi"
|
||||||
|
status, output, error = execute_ssh_command(ssh, command)
|
||||||
|
|
||||||
|
if status == 0:
|
||||||
|
logging.info(f"Successfully killed sijapi session on {server['ts_id']}")
|
||||||
|
else:
|
||||||
|
logging.error(f"Failed to kill sijapi session on {server['ts_id']}. Error: {error}")
|
||||||
|
|
||||||
|
except paramiko.SSHException as e:
|
||||||
|
logging.error(f"Failed to connect to {server['ts_id']}: {str(e)}")
|
||||||
|
finally:
|
||||||
|
ssh.close()
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
load_env()
|
load_env()
|
||||||
|
@ -105,6 +141,40 @@ def main():
|
||||||
pool = config['POOL']
|
pool = config['POOL']
|
||||||
local_ts_id = os.environ.get('TS_ID')
|
local_ts_id = os.environ.get('TS_ID')
|
||||||
|
|
||||||
|
parser = argparse.ArgumentParser(description='Manage sijapi servers')
|
||||||
|
parser.add_argument('--kill', action='store_true', help='Kill the local sijapi tmux session')
|
||||||
|
parser.add_argument('--restart', action='store_true', help='Restart the local sijapi tmux session')
|
||||||
|
parser.add_argument('--all', action='store_true', help='Apply the action to all servers')
|
||||||
|
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
if args.kill:
|
||||||
|
if args.all:
|
||||||
|
for server in pool:
|
||||||
|
if server['ts_id'] == local_ts_id:
|
||||||
|
kill_local_server()
|
||||||
|
else:
|
||||||
|
kill_remote_server(server)
|
||||||
|
else:
|
||||||
|
kill_local_server()
|
||||||
|
sys.exit(0)
|
||||||
|
|
||||||
|
if args.restart:
|
||||||
|
if args.all:
|
||||||
|
for server in pool:
|
||||||
|
if server['ts_id'] == local_ts_id:
|
||||||
|
kill_local_server()
|
||||||
|
start_local_server(server)
|
||||||
|
else:
|
||||||
|
kill_remote_server(server)
|
||||||
|
start_remote_server(server)
|
||||||
|
else:
|
||||||
|
kill_local_server()
|
||||||
|
local_server = next(server for server in pool if server['ts_id'] == local_ts_id)
|
||||||
|
start_local_server(local_server)
|
||||||
|
sys.exit(0)
|
||||||
|
|
||||||
|
# If no specific arguments, run the original script
|
||||||
for server in pool:
|
for server in pool:
|
||||||
if check_server(server['ts_ip'], server['app_port'], server['ts_id']):
|
if check_server(server['ts_ip'], server['app_port'], server['ts_id']):
|
||||||
logging.info(f"{server['ts_id']} is running and responding correctly.")
|
logging.info(f"{server['ts_id']} is running and responding correctly.")
|
||||||
|
@ -119,3 +189,4 @@ def main():
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
main()
|
main()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue