Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Check DRVA Port Status

  • Check port status

...

  • using the ss

...

  • command.

...

Code Block
ss -tulpn | grep LISTEN

...

Info

The ss (socket statistics) tool is a CLI command used to show network statistics. The ss command is a simpler and faster version of the now obsolete netstat command. Together with the ip command, ss is essential for gathering network information and troubleshooting network issues.

...

...

Code Block

...

systemctl status drva
ss -tulpn | grep LISTEN

...

Check DRVA Service Status

Info

...

systemctl is a Linux command-line utility used to control and manage systemd and services. You can think of

...

systemctl as a control interface for

...

systemd init service, allowing you to communicate with systemd and perform operations.

...

systemctl is a successor of

...

init.

Code Block
systemctl status drva

...