Code: Alles auswählen
sudo apt install -y mariadb-server
Code: Alles auswählen
sudo lsof -i TPC
Code: Alles auswählen
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
systemd-r 351 systemd-resolve 12u IPv4 13355 0t0 TCP *:5355 (LISTEN)
systemd-r 351 systemd-resolve 14u IPv6 13363 0t0 TCP *:5355 (LISTEN)
systemd-r 351 systemd-resolve 18u IPv4 13367 0t0 TCP 127.0.0.53:domain (LISTEN)
systemd-r 351 systemd-resolve 20u IPv4 13369 0t0 TCP 127.0.0.54:domain (LISTEN)
sshd 488 root 3u IPv4 14228 0t0 TCP *:ssh (LISTEN)
sshd 488 root 4u IPv6 14239 0t0 TCP *:ssh (LISTEN)
sshd 2077 root 4u IPv4 24226 0t0 TCP patrick-bucher:ssh->185.80.65.82:52367 (ESTABLISHED)
sshd 2091 user 4u IPv4 24226 0t0 TCP patrick-bucher:ssh->185.80.65.82:52367 (ESTABLISHED)
mariadbd 2996 mysql 17u IPv4 27186 0t0 TCP localhost:mysql (LISTEN)
Code: Alles auswählen
$ ss -tlpn
State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
LISTEN 0 4096 0.0.0.0:5355 0.0.0.0:*
LISTEN 0 80 127.0.0.1:3306 0.0.0.0:*
LISTEN 0 4096 127.0.0.53%lo:53 0.0.0.0:*
LISTEN 0 4096 127.0.0.54:53 0.0.0.0:*
LISTEN 0 128 0.0.0.0:22 0.0.0.0:*
LISTEN 0 4096 [::]:5355 [::]:*
LISTEN 0 128 [::]:22 [::]:*
Wie stelle ich das zuverlässig sicher? (Es geht mir eher um das Verständnis des Konzepts; mittlerweile weiss ich, dass es Port 3306 sein muss.)