Explore >> Select a destination


You are here

0pointer.net
| | 0pointer.de
17.4 parsecs away

Travel
| | Posts and writings by Lennart Poettering
| | idea.popcount.org
19.1 parsecs away

Travel
| |
| | ncona.com
19.1 parsecs away

Travel
| | ss is a replacement for netstat; a program that allows you to analyze the sockets running on a Linux system. In practice, it is useful to investigate if a port is being used and by whom or to investigate which services are running. In its simplest form, the ss command will list all non-listening sockets: 1 2 3 4 5 6 7 8 [adrian@localhost ~]$ ss Netid State Recv-Q Send-Q Local Address:Port Peer Address:Port u_str ESTAB 0 0 /run/systemd/journal/stdout 8313 * 29127 u_str ESTAB 0 0 /run/systemd/journal/stdout 9946 * 30837 u_str ESTAB 0 0 /var/run/dbus/system_bus_socket 7415 * 25359 u_str ESTAB 0 0 /var/run/dbus/system_bus_socket 8795 * 18724 u_str ESTAB 0 0 * 30484 * 28442 ...
| | yasoob.me
114.2 parsecs away

Travel
| Hi everyone! ?? I maintain an old website for a client that was originally developed in 2015. It hasn't been updated for the last 5 years and uses Django 1.7 and some Django extensions which haven't been updated for Django 3. I recently decided to move the website to a new server and had to repackage the Django code in a Docker container. It took me some time to get it working correctly so I hope this article can save you some time if you ever find yourself in a similar situation.