DocsSSH Access

SSH & SFTP Access

Securely access your application's running environment for debugging, log viewing, or file management.

Key Management

Abasthan uses public-key authentication for all SSH and SFTP connections. You must add your Public SSH Key in your Account Settings under the "SSH Keys" tab before you can connect.

Connection Details

Each service has a unique SSH identity. You can find the connection command in the "Shell" or "Settings" tab of your service. The format is typically:

ssh -p 22021 [app-id]@connect.abasthan.com

Where [app-id] is the 24-character hexadecimal ID of your application.

Interactive Shell

When you connect via SSH, Abasthan bridges your terminal directly to your application's running container (pod). You'll have access to all the tools and files within your container's environment.

SFTP File Management

Abasthan also supports SFTP, allowing you to upload or download files directly from your application's /home/abasthan/app directory using clients like FileZilla or Cyberduck.

  • Authentication: Uses your registered Public SSH Key. Password login is not supported.
  • Host: connect.abasthan.com
  • Port: 22021
  • Username: Your [app-id]
  • Protocol: SFTP

🔒 Security Reminder

Abasthan strictly enforces public-key authentication for both SSH and SFTP. Ensure your private key is available on your local machine when attempting to connect.