1 2 3 4 5 6 |
5월 30 10:09:39 xinet.kr mariadbd[10048]: 2024-05-30 10:09:39 0 [Warning] Could not increase number of max_open_files to more than 32768 (request: 33047) 5월 30 10:09:39 xinet.kr mariadbd[10048]: [101B blob data] 5월 30 10:09:39 xinet.kr mariadbd[10048]: 2024-05-30 10:09:39 0 [ERROR] Aborting 5월 30 10:09:39 xinet.kr systemd[1]: mariadb.service: Main process exited, code=exited, status=1/FAILURE 5월 30 10:09:39 xinet.kr systemd[1]: mariadb.service: Failed with result 'exit-code'. 5월 30 10:09:39 xinet.kr systemd[1]: Failed to start MariaDB 11.4.2 database server. |
mariadb 에서 로그를 확인해보면 Could not increase number of max_open_files to more than 에러가 발생
값을 수정해주면 된다 / 기존값이 32768 인데 / 33047로 변경 후 저장
1 2 3 |
[root@xinet /var/lib]# vi /usr/lib/systemd/system/mariadb.service LimitNOFILE=33047 |
데몬 적용
1 |
[root@xinet /var/lib]# systemctl daemon-reload |
서비스 재시작
1 |
[root@xinet ~]# systemctl start mariadb |