13693 update documentation to install from github

This commit is contained in:
rafael 2024-05-06 16:45:00 +02:00
parent 449318e49f
commit 510abe340c
2 changed files with 84 additions and 13 deletions

View File

@ -14,7 +14,7 @@ Pandora FMS has a "commercial" solution, with different features, oriented to co
### How to install Pandora FMS ### How to install Pandora FMS
Installing Pandora FMS from sources is a complex task. Please visit our wiki and follow all the steps described for a proper installation. https://pandorafms.com/manual/ Installing Pandora FMS from sources is a complex task. Please read the **extras/deploy/INSTALL.md** file follow all the steps described for a proper installation.
### What is Pandora FMS? ### What is Pandora FMS?
@ -44,15 +44,3 @@ Pandora FMS is a monitoring tool that not only measures if a parameter is right
- Very high capacity (Thousands of devices) - Very high capacity (Thousands of devices)
- Multitenant, several levels of ACL management. - Multitenant, several levels of ACL management.
### Screenshots
![screenshot 1](http://wolf359.artica.es/public_images/captura-pantalla-pandora3.png)
<br />
<br />
![screenshot 2](http://wolf359.artica.es/public_images/pandora6.0sp3-monitor-view.png)
<br />
<br />
![screenshot 3](http://wolf359.artica.es/public_images/pandora6.0sp3-agentview.png)
<br />
<br />
![screenshot 4](http://wolf359.artica.es/public_images/pandora6.0sp3-sample-visual-console.png)

View File

@ -0,0 +1,83 @@
![logo Pandora-FMS](https://user-images.githubusercontent.com/8567291/151817953-dc9c4c88-5f3c-459b-98a7-da0534930a2c.png)
### Installation from installation scrip
To install a new Pandora FMS instance, the easy and recommended way to do it is using the online installation tool.
Just download the correct script for your OS in extras/deploy-scripts/
The nomenclature for the corresponding OS scripts are:
- **pandora_deploy_community_gh.sh**: centos7 (to be deprecated)
- **pandora_deploy_community_el8_gh.sh**: rockylinux8, almalinux 8, RHEL8
- **pandora_deploy_community_el9_gh.sh**: rockylinux9, almalinux 9, RHEL9
- **pandora_deploy_community_ubuntu_2204_gh.sh**: Ubuntu Server 22.04
Once you download and copy the script to the home directory of your server, give it the correct permission to execute.
```
chmod +x pandora_deploy_community_el8_gh.sh
```
Then just run the script to start the installation process.
```
./pandora_deploy_community_el8_gh.sh
```
### Install Agent online scrip
To install a new Pandora FMS instance, the easy and recommended way to do it is using the online installation tool.
Just download the correct script for your OS in extras/deploy-scripts/
it will handle all the dependencies and configurations for you.
```
chmod +x pandora_agent_deploy_gh.sh
./pandora_agent_deploy_gh.sh
```
### Update Pandora FMS
The easiest and recommend way to update the environment is to use the update manager integrated in the Pandora FMS web console, just clicking in online update.
To update it manually, is possible to do it from the release packages
#### Update from RPM packages
For RHEL and RHEL compatible systems such as rockylinux or almalinux just download the rpms packages from release section and install it with the proper package manager such as yum or dnf.
For example.
```
dnf install ./pandorafms_agent_linux-7.0NG.772.noarch.rpm
dnf install ./pandorafms_console-7.0NG.772.noarch.rpm
dnf install ./pandorafms_server-7.0NG.772.x86_64.rpm
```
#### Update from Tarball packages
For Ubuntu Server systems the only path to update outside the update manager is the Tarball source code packages, it also compatible with RHEL compatible systems if you prefer to do it in such way.
##### Console
To update the condos you should download the tarball package, decompress it and then copy the pandora_console format to your Apache folder.
```
tar xvzf pandorafms_console-7.0NG.772.tar.gz
cp -R pandora_console /var/www/html/
```
##### Server
To update the server is similar just download the tarball package from release section, decompress it, move it to the pandora_server folder and execute the installation script.
```
tar xvfz pandorafms_server-7.0NG.772.tar.gz
cd pandora_server
./pandora_server_installer --install
```
##### Agent
To update the agent, similar just download the tarball package from release section, decompress it, move it to the pandora_server folder and execute the installation script.
```
tar xvzf pandorafms_agent_linux-7.0NG.tar.gz
cd unix
./pandora_agent_installer --install
```