Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Deployment (CentOS6)

Patrick Hochstenbach edited this page Nov 9, 2017 · 1 revision

The etc directory of the LibreCat distribution contains some example files how to deploy the application using an Apache frontend.

Install the librecat.initd in the /etc/init.d directory (check the file for local settings):

$ cp etc/librecat.initd /etc/init.d/librecat
$ chkconfig -add librecat
$ service librecat start

Install the librecat-workers.initd in the /etc/init.d directory (check the file for local settings):

$ cp etc/librecat-workers.initd /etc/init.d/librecat-workers
$ chkconfig -add librecat-workers
$ service librecat-workers start

Install the librecat.httpd_conf in the /etc/httpd/conf.d directory:

$ cp etc/librecat.httpd_conf /etc/httpd/conf.d/librecat.conf
$ service httpd restart

Install the crontab update scripts (check the file for local settings):

$ cp etc/librecat.crond /etc/cron.d/librecat
$ service crond restart
Clone this wiki locally