This guide installs YetiForce CRM on a self-hosted Linux server.
Install the web server, PHP runtime, and database server required by the CRM.
Download the CRM release package from the official site and extract it into your web root.
unzip crm.zip
Create a database and user for the CRM.
mysql -u root -p -e "CREATE DATABASE crm;"
mysql -u root -p -e "CREATE USER 'crm'@'localhost' IDENTIFIED BY 'change-me';"
mysql -u root -p -e "GRANT ALL PRIVILEGES ON crm.* TO 'crm'@'localhost';"
Open the installer URL in your browser and follow the on-screen steps.
Prefer automation? See YetiForce CRM Ansible Setup for an example playbook.
Prefer containers? See YetiForce CRM Docker Setup.
Any questions?
Feel free to contact us. Find all contact information on our contact page.