Sentrifugo is a free and powerful open-source HR management software that can be easily configured to meet your organizational needs. It offers HR resource modules with exceptional features.
To install Sentrifugo on a Linux server, follow these steps:
System Requirements:
Download Sentrifugo:
Download the latest version of Sentrifugo from the official website.
Extract the Package:
tar -xvzf sentrifugo_x.x.x.tar.gz
Move to Web Directory:
sudo mv sentrifugo /var/www/html/
Set Permissions:
sudo chown -R www-data:www-data /var/www/html/sentrifugo
sudo chmod -R 755 /var/www/html/sentrifugo
Create Database:
mysql -u root -p
CREATE DATABASE sentrifugo;
GRANT ALL PRIVILEGES ON sentrifugo.* TO 'sentrifugoUser'@'localhost' IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
EXIT;
Configure Apache:
Create a new virtual host configuration file for Sentrifugo.
sudo nano /etc/apache2/sites-available/sentrifugo.conf
Add the following content:
<VirtualHost *:80>
ServerAdmin admin@example.com
DocumentRoot /var/www/html/sentrifugo
ServerName example.com
<Directory /var/www/html/sentrifugo>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
Enable the Site and Rewrite Module:
sudo a2ensite sentrifugo.conf
sudo a2enmod rewrite
sudo systemctl restart apache2
Complete the Installation:
Open your web browser and navigate to http://example.com. Follow the on-screen instructions to complete the installation.
For more detailed documentation and support, visit the Sentrifugo Documentation.
Feel free to contact us. Find all contact information on our contact page.