CWP panel

Installing Graylog V4 on Centos 8



Installation de Graylog version 4 à partir de la documentation officielle:

Installation des pré-requis:
– java
– mongodb
– elasticsearch
Configuration du pare-feu pour l’ouverture du port 9000

Liste des commandes utilisées dans la vidéo:
yum install java-1.8.0-openjdk-headless.x86_64
vi /etc/yum.repos.d/mongodb-org.repo
yum install mongodb-org
systemctl enable mongod.service
systemctl start mongod.service
rpm –import
vi /etc/yum.repos.d/elasticsearch.repo
yum install elasticsearch-oss
systemctl enable elasticsearch.service
systemctl start elasticsearch.service
yum install epel-release
yum install pwgen
rpm -Uvh
yum install graylog-server
vi /etc/graylog/server/server.conf
systemctl enable graylog-server.service
systemctl start graylog-server.service
setsebool -P httpd_can_network_connect 1
sudo semanage port -a -t mongod_port_t -p tcp 27017
firewall-cmd –zone=public –add-port=9000/tcp –permanent
firewall-cmd –reload

source

 

To see the full content, share this page by clicking one of the buttons below

Related Articles

Leave a Reply