keecode logokeecode
110

POP3

Post Office Protocol v3

TCP
Email

Port Information

Port Number

110

Protocol

TCP

Category

Email

Common Usage

URL with Port

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

Node.js/Express Server

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

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

Docker Port Mapping

docker run -p 110:110 myapp

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

Firewall Configuration

# Linux/Ubuntu firewall
sudo ufw allow 110/tcp

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