keecode logokeecode
5900

VNC

Virtual Network Computing

TCP
Remote Access

Port Information

Port Number

5900

Protocol

TCP

Category

Remote Access

Common Usage

URL with Port

http://localhost:5900
https://example.com:5900

Node.js/Express Server

const express = require('express');
const app = express();
const PORT = 5900;

app.listen(PORT, () => {
  console.log(`Server running on port ${PORT}`);
});

Docker Port Mapping

docker run -p 5900:5900 myapp

# In docker-compose.yml
ports:
  - "5900:5900"

Firewall Configuration

# Linux/Ubuntu firewall
sudo ufw allow 5900/tcp

# Check if port is in use
netstat -an | grep 5900