Skip to content

Accessing Your Instance

This guide explains the different methods available for accessing your Tibus Cloud instance.

Web Console Access

The web console provides browser-based access to your instance:

  • Location: Available from the instance details page
  • Advantages:
    • No additional software required
    • Works from any modern browser
    • Useful for emergency access
  • Limitations:
    • Limited copy/paste functionality
    • May have keyboard mapping issues
    • Not recommended for long-term use

Direct Connection Methods

SSH Access (Linux Instances)

Connect to Linux instances using SSH:

  1. Prerequisites:

    • SSH client installed on your computer
    • SSH key pair configured during instance creation
    • Instance's public IP address
  2. Connection Command:

    ssh username@instance-ip
    

    • Replace username with the default user for your OS
    • Replace instance-ip with your instance's floating IP
  3. Common Issues:

    • Permission denied: Check SSH key permissions
    • Connection timeout: Verify security group rules
    • Host key verification failed: Update known hosts file

Security Best Practices

  1. Access Control:

    • Use strong passwords
    • Rotate SSH keys periodically
    • Never share credentials
  2. Network Security:

    • Restrict access in security groups
    • Use VPN when possible
    • Monitor access logs
  3. Maintenance:

    • Keep remote access software updated
    • Regularly audit access methods
    • Remove unused access credentials

Next Steps