×


Blog


Step by Step process to install and configure Zabbix monitoring server on Ubuntu ?

This article will guide you on how to install and configure the Zabbix server on #Linux. You have also learned how to install and configure the Zabbix agent on the Zabbix server and the client #machines. Now you can easily keep track of the servers and monitor their health.

Zabbix server is the central process of #Zabbix software. The server performs the polling and trapping of data, it calculates triggers, sends notifications to users.

The server can itself remotely check networked services (such as web servers and mail servers) using simple service checks.

You can now start the Zabbix server and agent by running the commands:

sudo systemctl start zabbix-server.

sudo systemctl start zabbix-agent.


Methods to check memory usage in CentOS 8 ?

This article will guide you on how to check the #memory #usage on the #CentOS 8 system. Moreover, we have executed different commands such as cat, free, #vmstat, top and htop that are used to display the memory information. 

sudo apt-get clean clears out the local #repository of retrieved package files.It removes everything but the lock file from /var/cache/apt/archives/ and /var/cache/apt/archives/partial/. Another possibility to see what happens when we use the command sudo apt-get clean is to simulate the execution with the -s -option.

Using these commands, you can easily get information about your system RAM, and CPU.

Commands to check memory usage on Linux:

1. free command. The free command is the most simple and easy to use command to check memory usage on linux.

2. /proc/meminfo. The next way to check memory usage is to read the /proc/meminfo file. 3. vmstat. The vmstat command with the s option, lays out the memory usage statistics much like the proc command.

5. top command.

5. htop.


Methods to check memory usage in Linux Mint 20 ?

This article will guide you on different methods system administrators can use to check #memory #usage in #Linux #Mint 20. One of these methods was based on GUI and is intended for the users who prefer to work with a catchy interface. 

The other three methods are #CLI based since most of the tasks in the Linux based operating systems is performed via the command-line interface.

The simplest way is to fill /tmp, assuming it is using tmpfs which is the default. Run df -k /tmp to make sure it is. Keep in mind that without giving the program a maximum amount of memory it'll allocate until it exhausts the amount it can (may be limited by ulimit, amount of memory, or size of address space).

Commands to Check Memory Use in Linux:

1. cat Command to Show Linux Memory Information.

2. free Command to Display the Amount of Physical and Swap Memory.

3. vmstat Command to Report Virtual Memory Statistics.

4. top Command to Check Memory Use.

5. htop Command to Find Memory Load of Each Process.


Step by step process to install and configure Odoo ERP on Ubuntu 20.04 LTS ?

This article will guide you on how to install and configure the Odoo14 on #Ubuntu 20.04 system. Also you will learn how to install required #PostgreSQL and wkhtmltopdf packages on your system. 

1. Odoo Community Edition is the free basic version of Odoo supported by open source software. 

2. #Odoo #CRM (Customer Relationship Management) system is a powerful browser-based sales software designed to increase organisational efficiency. Odoo, contains all of the applications that your sales, marketing, accounts department and management teams need in the one place.

3. Once all dependencies are set up, Odoo can be launched by running odoo-bin , the command-line interface of the server. It is located at the root of the Odoo Community directory.

4. Once Odoo installed, you can verify the service is up and running and is enabled to automatically start at system #boot. 

5. By default, Odoo listens on port 8069 and you can verify it using the netstat or ss tools. 

This is another way to confirm that Odoo is up and running.


Methods to uninstall programs from Debian 10 ?

This article will guide you on how to uninstall programs from Debian 10. The first method can be used if you prefer #GUI over #CLI. The second method can be used if you only intend to delete a program without its configuration files. The third mthod can be used if you intend to delete a program along with all of its configuration files. Finally, the fourth mthod can be used if you want to get rid of all the unused packages and dependencies altogether.

Whenever you add a repository using "add-apt-repository" command, it will be stored in /etc/apt/sources. list file. 

To delete a software repository from Ubuntu and its derivatives, just open the /etc/apt/sources. list file and look for the repository entry and delete it.

Running sudo apt-get update (or sudo aptitude update ) updates this on your local system. This is the step that actually retrieves information about what packages can be installed, including what updates to currently installed packages packages are available, from Internet sources.

To Uninstall Programs on #Debian:

1. Go to the Installed tab. 

2. It will list all the installed #applications in your system. 

3. From the list, search for the application you want to #uninstall and click the Remove button in front of it. 

4. When you click the Remove button, the following message will appear for you to confirm the decision.


Step by step process to install and configure HAproxy on Ubuntu 20.04 LTS ?

This article will guide you on how to #install and configure #HAproxy load balancer on the #Linux system. 

You will learn the basic setup and configuration of HAproxy as a load balancer for #Apache web servers. Also, we looked at some commands for managing the HAproxy server. In the end, we tested the load balancing through the browser and the #curl command. 

HAProxy is free, open source #software that provides a high availability #load #balancer and proxy server for #TCP and HTTP-based applications that spreads requests across multiple servers.

To Deploy on Linux :

1. Download the source code of HAProxy.

2. Unzip the file into the desired location tar xvzf haproxy-1.8-dev1.

3. Compile the source code.

4. Create config file haproxy.cfg with the configuration details.

5. Start the haproxy with ./haproxy -f haproxy.

6. Access the status page on http:localhost:9999/stats.