This guide installs SuiteCRM 8 on a standard LAMP/LEMP stack.
Download the latest SuiteCRM 8 installable package and extract it to your web root.
From the SuiteCRM directory:
find . -type d -not -perm 2755 -exec chmod 2755 {} \;
find . -type f -not -perm 0644 -exec chmod 0644 {} \;
find . ! -user www-data -exec chown www-data:www-data {} \;
chmod +x bin/console
Adjust the web server user/group if it is not www-data.
Point your web root to the SuiteCRM public/ directory and enable URL rewrites.
sudo mysql -u root -p
CREATE DATABASE suitecrm_db CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
CREATE USER 'suitecrm_user'@'localhost' IDENTIFIED BY 'StrongPassword123!';
GRANT ALL PRIVILEGES ON suitecrm_db.* TO 'suitecrm_user'@'localhost';
FLUSH PRIVILEGES;
EXIT;
Open http://example.com and follow the SuiteCRM installer.
Check the SuiteCRM installation guide or reach out via our contact page.