syslog란
사용 Port
설치
dnf install rsyslog-mysql
dnf install mariadb-server -y
systemctl start mariadb
systemctl restart mariadb
dnf module list php
dnf module reset php
dnf module enable php:8.0
dnf install httpd php php-mysqlnd php-gd php-curl php-zip php-mbstring -y
systemctl start httpd
systemctl enable httpd
mysql -u root < /usr/share/doc/rsyslog/mysql-createDB.sql
=> DB 생성
mysql -u root -p
password
grant all privileges on Syslog.* to dbadmin@localhost identified by '1234' with grant option;
=> USER 생성
flush privileges;
quit
vim /etc/rsyslog.conf

wget [<http://download.adiscon.com/loganalyzer/loganalyzer-4.1.13.tar.gz>](<http://download.adiscon.com/loganalyzer/loganalyzer-4.1.13.tar.gz>)
gunzip loganalyzer-4.1.13.tar.gz
tar xf loganalyzer-4.1.13.tar
mv loganalyzer-4.1.13 /var/www/html/log
cd src
sh ../contrib/configure.sh
[<http://192.168.80.110/loganalyzer/src/install.php>](<http://192.168.80.110/loganalyzer/src/install.php>)
이후
/etc/rsyslog.conf에 기입한 Syslog, admin, 1234 정보로 설치 진행
vim /etc/rsyslog.conf

결과

문제점
해결
문제점 탐색

sudo dnf remove php php-* -y
dnf install httpd php php-mysqlnd php-gd php-curl php-zip php-mbstring -y