Virtual Private Server (VPS) is ideal for personal or individual usage.
Utilizing a custom-built physical server allows you to harness the complete array of computer resources.
Web storage is a vital component of the modern digital landscape, serving, storing and managing data online.
This guide explains the required / strongly recommended steps to complete after your first login to the VPS to keep it secure and stable.
For first access (RDP / SSH / SSH key), see: Connect to a server (Windows RDP and Linux SSH)
It is strongly recommended that whenever possible:
- RDP (Windows) and SSH (Linux) traffic goes through a WireGuard VPN,
- and ports 3389/22 are not exposed to the public internet.
WireGuard guide:
- https://vipy.hu/en/article/windows-rdp-wireguard
1. Open: Settings
- Start menu → Settings
2. Go to: Accounts
3. Select: Sign-in options
4. Under Password, click:
- Change
5. Enter:
- Current password
- New password
- Confirm new password
6. Save / finish:
- Next → Finish (button names may vary depending on the Windows version)

This is where you can find Password → Change.

Enter and confirm your new password.
ℹ️ Recommended test: close your RDP session and reconnect using the new password.
1. Open: Settings
2. Go to: Windows Update
3. Click:
- Check for updates
4. Install updates:
- Download & install
5. If prompted, restart:
- Restart now

If you see “Restart required”, click Restart now.
⚠️ Updates and restarts may be required in multiple rounds.
Important: The time server must always be set to time.vipy.hu, because only this server is allowed.
1. Open: Settings
2. Go to: Time & language
3. Select: Date & time
4. Set the time zone:
- Time zone: (UTC+01:00) Budapest

Set the Time zone here (e.g. (UTC+01:00) Budapest).
Important: The time server must always be time.vipy.hu, because only this server is allowed.
Option A (from Settings):
1. Open: Settings
2. Go to: Time & language
3. Select: Date & time
4. Click: Additional clocks
5. Open: Internet Time
6. Click: Change settings…
7. Enable:
- Synchronize with an Internet time server
8. In the server field, enter: time.vipy.hu
9. Click: Update now
10. Finally: OK
Option B (classic path):
- Control Panel → Date and Time → Internet Time → Change settings…

Enable Synchronize with an Internet time server, then set Server: time.vipy.hu → Update now.
ℹ️ Important: The time server must always be set to `time.vipy.hu`, because only this server is allowed.
After logging in via SSH, run:
passwd
On Debian/Ubuntu:
apt update
apt upgrade -y
If needed, reboot:
reboot
Linux VPS instances use chrony for time synchronization, and only the time.vipy.hu time server is allowed.
timedatectl set-timezone Europe/Budapest
Check:
timedatectl
1. Open the chrony configuration:
nano /etc/chrony/chrony.conf
2. Find the existing pool or server lines and set it like this (example):
pool time.vipy.hu iburst
ℹ️ It is recommended to remove or comment out other `pool` / `server` lines so that only **time.vipy.hu** remains.

Example configuration for the `time.vipy.hu` time server.
3. After saving, restart chrony:
systemctl restart chrony
ℹ️ Important: The time server must always be set to `time.vipy.hu`, because only this server is allowed.