import paramiko import sys c = paramiko.SSHClient() c.set_missing_host_key_policy(paramiko.AutoAddPolicy()) c.connect('160.187.143.253', username='root', password=';ur7n)LC1BQ;') def r(cmd): print(f"Executing: {cmd}") try: _, so, se = c.exec_command(cmd, timeout=30) stdout = so.read().decode('utf-8', 'replace').strip() stderr = se.read().decode('utf-8', 'replace').strip() if stdout: print(f"STDOUT: {stdout}") if stderr: print(f"STDERR: {stderr}") return stdout except Exception as e: print(f"Error: {e}") return str(e) # 1. Look at the database error using PM2 r("pm2 logs iam --lines 50 --nostream") c.close()