keecode logokeecode
995

POP3S

POP3 Secure (SSL)

TCP
Email

Port Information

Port Number

995

Protocol

TCP

Category

Email

Common Usage

URL with Port

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

Node.js/Express Server

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

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

Docker Port Mapping

docker run -p 995:995 myapp

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

Firewall Configuration

# Linux/Ubuntu firewall
sudo ufw allow 995/tcp

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