5 Server Access
b24johka edited this page 2026-05-22 08:23:05 +00:00

Access to the webpage

The server where the application is deployed can be accessed through the URL: http://193.93.250.90/app/

Important

In order to run the SSH to the server you must have acuired the SSH-key.

Access the server with Unix (SSH)

The server can be made reached through the command:

ssh -i "path/to/key/private.key" -p 2222 ubuntu@193.93.250.90

Access the server with Windows (SSH)

For first time usage with the key we need to change the privileges of the key

icacls "path/to/key/private.key"/inheritance:r
icacls "path/to/key/private.key"%USERNAME%:R"

After changing privileges to the key the server can be reached through the command:

ssh -i "path/to/key/private.key" -p 2222 ubuntu@193.93.250.90**

Note that the "path/to/key/private.key" is just a placeholder for the path of the key.