-
Notifications
You must be signed in to change notification settings - Fork 448
Self‐Hosted on RockyLinux
The purpose of this page is to provide the requirements and steps needed to install/run ChurchCRM on a self-hosted Linux machine running RockyLinux (currently v8.9).
- mariadb-server
- httpd (apache web server)
- php8
- npm (if running from git clone)
sudo dnf install httpd mariadb mariadb-server
It may be possible to run with the stock RockyLinux php packages, but it seems to be easier to use modular packages from the remi repository, and instructions for this are provided below:
To enable the needed remi repository, see: Adding Extra RockyLinux Repositories
sudo dnf module reset php
sudo dnf module enable php:remi-8.1
sudo dnf install php php-cli php-fpm php-mysqlnd php-zip php-curl php-gd
sudo dnf module enable composer:remi:2
sudo dnf install composer
-
Edit
/etc/my.cnf.d/mariadb-server.cnf
if desired to change db file location -
Start mariadb:
sudo systemctl start mariadb
-
Secure the setup, and set a root password:
sudo mysql_secure_installation
-
Create the churchcrm database:
mysqladmin -u root -p create churchcrm
-
Then create the churchcrm user and set a password for that user
mysql -u root -p
:CREATE USER 'churchcrm'@'localhost' IDENTIFIED BY 'YourDBPasswordHere'; GRANT ALL PRIVILEGES ON churchcrm.* TO 'churchcrm'@'localhost'; FLUSH PRIVILEGES;
- Assuming that churchcrm may not be the only service on the web server, you should make a custom VirtualHost for churchcrm.
- An example is given here, which should be placed in
/etc/httpd/conf.d
directory, namedchurchcrm.conf
:
<VirtualHost *:8081>
DocumentRoot /var/www/html
<LocationMatch "/fpm-status">
ProxyPass unix:/run/php-fpm/www.sock|fcgi://localhost
</LocationMatch>
<Directory /var/www/html>
AllowOverride All
</Directory>
</VirtualHost>
- The AllowOverride All is needed to ensure
.htaccess
rewrite requests are honored - You need to make sure that the
httpd
andphp-fpm
are enabled and running:
sudo systemctl enable --now php-fpm
sudo systmctl enable --now httpd
- Note these steps are not necessary if running from a released zip file, as the results of this steps are already included in the zip.
- Once the OS packages are installed, the following steps are used from a clean
git pull
on master-
composer install
(from src dir) -
composer --dev install
(from src dir, to install needed dev tools) npm install
npm run deploy
-
(e.g. a zip file such as: https://github.com/ChurchCRM/CRM/releases/download/5.7.0/ChurchCRM-5.7.0.zip)
- This zip file contains a churchcrm top-level dir and will need to be unzipped in an appropriate area within your web server's Document root.
- For this example we will put it in
/var/www/html
and expect to access that churchcrm subdirectory at: https://YourSiteName/churchcrm - Run the following commands
sudo mkdir /var/www/html/churchcrm
sudo unzip -d /var/www/html ChurchCRM-5.7.0.zip
sudo chown -R apache:apache /var/www/html/churchcrm
Once the above steps have been completed, and you have:
- A running database with a churchcrm account, and a known password
- A working apache web server with mod_rewrite enabled
You should then be able to go to: https://YourSiteName/churchcrm and you should be directed to a setup page that lets you begin configuration of the application.