How To Install libserver-starter-perl on Ubuntu 18.04

In this tutorial we learn how to install libserver-starter-perl on Ubuntu 18.04. libserver-starter-perl is superdaemon for hot-deploying Perl server programs

Introduction

In this tutorial we learn how to install libserver-starter-perl on Ubuntu 18.04.

What is libserver-starter-perl

libserver-starter-perl is:

It is often a pain to write a server program that supports graceful restarts, with no resource leaks. Server::Starter solves the problem by splitting the task into two. One is start_server, a script provided as a part of the module, which works as a superdaemon that binds to zero or more TCP ports or unix sockets, and repeatedly spawns the server program that actually handles the necessary tasks (for example, responding to incoming commenctions). The spawned server programs under Server::Starter call accept(2) and handle the requests.

To gracefully restart the server program, send SIGHUP to the superdaemon. The superdaemon spawns a new server program, and if (and only if) it starts up successfully, sends SIGTERM to the old server program.

There are three methods to install libserver-starter-perl on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libserver-starter-perl Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libserver-starter-perl using apt-get by running the following command:

sudo apt-get -y install libserver-starter-perl

Install libserver-starter-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libserver-starter-perl using apt by running the following command:

sudo apt -y install libserver-starter-perl

Install libserver-starter-perl Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libserver-starter-perl using aptitude by running the following command:

sudo aptitude -y install libserver-starter-perl

How To Uninstall libserver-starter-perl on Ubuntu 18.04

To uninstall only the libserver-starter-perl package we can use the following command:

sudo apt-get remove libserver-starter-perl

Uninstall libserver-starter-perl And Its Dependencies

To uninstall libserver-starter-perl and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove libserver-starter-perl

Remove libserver-starter-perl Configurations and Data

To remove libserver-starter-perl configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge libserver-starter-perl

Remove libserver-starter-perl configuration, data, and all of its dependencies

We can use the following command to remove libserver-starter-perl configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libserver-starter-perl

References

Summary

In this tutorial we learn how to install libserver-starter-perl package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.