GLPI

Plugins 

https://github.com/orgs/pluginsGLPI/repositories?type=all&page=2

Agent

https://github.com/glpi-project/glpi-agent/releases

https://glpi-project.org/glpi-agent-1-7/

https://glpi-agent.readthedocs.io/en/latest/usage.html

1. To change the GLPI plugin port (Home -> Administration -> GLPI Inventory -> General Setup -> Agent port=62300)
2. Change ALL Agents port (C:\Program Files\GLPI-Agent\etc\agent.cfg -> httpd-port = 62300)
3. Make sure that the port is listening and is not blocked by a firewall on the Agent’s side. (command for PowerShell: tnc IPAgentHost -port 62300)
4. Make sure that port 62300 on the GLPI Server is also not blocked by a firewall. (command for PowerShell: tnc IPGLPIServer -port 62300)
    Maybe something else smile


tar -xvjf enginsxt.tar.bz2
tar -zxvf enginsxt.tar.bz2



nstalling Composer on Ubuntu 22.04

Following are the steps below to show the composer install Ubuntu system:

Step 1: Download the Composer Installer

Open a terminal and run the following command to download the Composer installer:

curl -sS https://getcomposer.org/installer -o composer-setup.php
curl composer

This command uses curl to download the Composer installer from the official Composer website. The -sS flags are used to suppress the progress meter and error messages, respectively.

Step 2: Install Composer

Run the following command to Ubuntu install Composer:

php composer-setup.php
php composer

This command runs the Composer installer, which will prompt you to choose an installation path. Choose a location, such as /usr/local/bin, and press Enter to continue.

Step 3: Move the Composer Binary

Run the following command to move the Composer binary to the chosen installation path:

sudo mv composer.phar /usr/local/bin/composer
binary composer

This command moves the Composer binary (composer.phar) to the chosen installation path /usr/local/bin/composer. The sudo command is used to gain root privileges, which are required to write to the /usr/local/bin directory.

Step 4: Verify Composer Installation

Run the following command to verify that Composer is installed correctly:

composer --version
composer version

This command runs Composer and displays its version number. If Composer is installed correctly, you should see a version number displayed.

Yarn install

sudo apt remove cmdtest

sudo apt remove yarn

Install yarn globally using npm

sudo npm install -g yarn

Did you find this article useful?