Posts

Showing posts from April, 2024

Transfer FortiGate firewall log into the Wazuh server via Rsyslog

Image
  Transfer FortiGate firewall log into the Wazuh server via Rsyslog FortiGate Firewall                          Rsyslog                                                Wazuh Server IP- 172.16.xx.xx                             IP- 172.16.xx.xx                                  IP- 172.16.xx.xx     1.       INSTALL AND CONFIGURE RSYSLOG I...

Install Zabbix server step by step in ubuntu 22.04

Image
  Zabbix Documentation OS: Ubuntu 22.04 LTS CPU: 2 Core        Memory: 4GB Server address: http://server IP/zabbix Login Credential (Default):               User- Admin       Passwd: Zabbix Prepared by: sahabaz   Apt upgrade -y Installing Zabbix Repository wget https://repo.zabbix.com/zabbix/6.4/ubuntu/pool/main/z/zabbix-release/zabbix-release_6.4-1+ubuntu22.04_all.deb dpkg -i zabbix-release_6.4-1+ubuntu22.04_all.deb apt update Install Zabbix server, frontend, agent. apt install zabbix-server-mysql zabbix-frontend-php zabbix-apache-conf zabbix-sql-scripts zabbix-agent Creating initial database (Maria DB/Mysql) apt install mariadb-server systemctl start mariadb.service mysql_secure_installation        (Mysql Password: *********) mysql -uroot -p mysql...

GLPI- Digital Asset and Ticket management server installation process step by step in Ubuntu 22.04

Image
Resource Requirement-      Active Internet connection                                                           Minimum CPU 2 core                                                           M inimum RAM 2 GB   This is the documentation prepared for Ubuntu version 22.04 LTS. User Login: root (that's why I'm not using sudo) After successfully installing Ubuntu 22.04 Update Ubuntu apt update apt -y upgrade   Install MariaDB Database server for GLPI database. apt update apt install mariadb-server mysql_secure_installation          ( set a new password for DB) sudo mysql -u root -p ...