Cloud Database Usage Guide - bounswe/bounswe2025group10 GitHub Wiki
-
IP Address:
134.209.253.215 -
Username:
root -
Password:
group10Cloud
β οΈ Important: Access is given asroot. Please handle with care to avoid unintentional system changes or data loss.
- A terminal application (Linux/macOS) or SSH client like PuTTY (for Windows).
- Internet access.
Open your terminal and run:
If prompted, type:
password: group10Cloud
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.
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 psOr check for active services:
systemctl list-units --type=service| 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 |
This server is accessible from the open internet via root. For safety:
- Never share this password publicly.
- Avoid unnecessary use of
rootprivileges. - Change the password regularly if this is a long-term server.
- Consider setting up SSH key-based login for improved security.
scp yourfile.txt [email protected]:/root/scp [email protected]:/root/yourfile.txt .If you want to use VSCode Remote SSH to connect:
- Install the Remote - SSH extension in VSCode.
- Add the following to your
~/.ssh/config:
Host group10cloud
HostName 134.209.253.215
User root- Use the Command Palette (
Cmd+Shift+PorCtrl+Shift+P), then choose: