Cloud Database Usage Guide - bounswe/bounswe2025group10 GitHub Wiki

🌐 Cloud Server Usage & Connection Guide

πŸ“Œ Server Details

  • IP Address: 134.209.253.215
  • Username: root
  • Password: group10Cloud

⚠️ Important: Access is given as root. Please handle with care to avoid unintentional system changes or data loss.


πŸ–₯️ Connecting to the Cloud Server

πŸ”§ Prerequisites

  • A terminal application (Linux/macOS) or SSH client like PuTTY (for Windows).
  • Internet access.

πŸ’» Using Terminal (Linux/macOS/WSL)

Open your terminal and run:

If prompted, type:

password: group10Cloud

πŸ” First-Time Connection

You may see a message like this:

The authenticity of host '134.209.253.215' can't be established...
Are you sure you want to continue connecting (yes/no/[fingerprint])?

Type:

yes

This is normal for first-time SSH connections.


πŸ“¦ What’s Installed

According to setup notes:

  • Jenkins is being installed for CI/CD.
  • Essential environments (env) are being configured.
  • Likely includes database services used by the group.

If you are unsure which services are running, after logging in, try:

docker ps

Or check for active services:

systemctl list-units --type=service

βš™οΈ Common Maintenance Tasks

Task Command
Reboot the server reboot
View running processes htop (or top if htop isn't installed)
Disk usage df -h
Jenkins status systemctl status jenkins

🧯 Security Notice

This server is accessible from the open internet via root. For safety:

  • Never share this password publicly.
  • Avoid unnecessary use of root privileges.
  • Change the password regularly if this is a long-term server.
  • Consider setting up SSH key-based login for improved security.

πŸ“ Optional: Copy Files to/from Server

Upload a file to the server:

scp yourfile.txt [email protected]:/root/

Download a file from the server:

scp [email protected]:/root/yourfile.txt .

🧠 Tip

If you want to use VSCode Remote SSH to connect:

  1. Install the Remote - SSH extension in VSCode.
  2. Add the following to your ~/.ssh/config:
Host group10cloud
    HostName 134.209.253.215
    User root
  1. Use the Command Palette (Cmd+Shift+P or Ctrl+Shift+P), then choose:
⚠️ **GitHub.com Fallback** ⚠️