Skip to content

Instantly share code, notes, and snippets.

@cloudybdone
Last active February 8, 2022 16:39
Show Gist options
  • Select an option

  • Save cloudybdone/d93fb56cb90960a9f11395d22a033797 to your computer and use it in GitHub Desktop.

Select an option

Save cloudybdone/d93fb56cb90960a9f11395d22a033797 to your computer and use it in GitHub Desktop.
Vtiger CRM Installation on Ubuntu Linux
If you need any help related to Vtiger CRM installation service on Ubuntu contact with me:
Telegram: https://t.me/Cloudybdone
WhatsApp: https://wa.link/3j794g
Skype: https://join.skype.com/invite/vLFaKHxboQrc
Email: cloudybdone@gmail.com
Linkedin: https://www.linkedin.com/in/cloudybdone/
Facebook: https://www.facebook.com/cloudybdone/
About Me: https://about.me/cloudybdone
sudo apt update
sudo apt install apache2
apache2 -v
sudo service apache2....
sudo service apache2 status
sudo -i
apt install mariadb-server.....
mysql_secure_installation
nano /usr/lib/systemd......
LimitNOFILE=
systemctl daemon-reload
systemctl status mariadb
systemctl is-enabled mariadb
mysql
create database vtiger;
CREATE USER 'vtiger' IDENTIFIED BY 'password';
use vtiger;
exit
apt update -y
apt upgrade -y
sudo apt-get install software.....
sudo add-apt-repository ppa....
sudo apt install php7.2-fpm php7.2-common php7.2-mbstring php7.2......
sudo apt install libapache2-mod-php php-mysql.....
php --version
sudo timedatectl list-timezones
sudo nano /etc/php/7.4/.....
memory_limit =
display_errors =
date.timezone = Africa/Nairobi
wget https://tenet.dl.sourceforge.net/project/vtigercrm/vtiger%20CRM%207.4.....
sudo vtigercrm7.4.0.tar.gz.....
sudo mkdir /var/www/....
sudo mv vtigercrm/* /var/www....
sudo chown -R www-data:www-dat....
sudo /var/www/vtigercrm
sudo service apache2 restart
cd /etc/apache2/....
<VirtualHost *:80>
ServerAdmin webmaster@example.com
ServerAlias www.example.com
DocumentRoot /var/www.....
<Directory /var/www.....
Options +FollowSymlink...
Require all.....
</Directory>
ErrorLog /var/log/apache2/vtigercrm_error.log
</VirtualHost>
sudo service apache2 reload
visit: http://localhost
@cloudybdone

Copy link
Copy Markdown
Author

Screenshot from 2022-01-18 00-02-10

@cloudybdone

Copy link
Copy Markdown
Author

Screenshot from 2022-01-18 00-01-30

@cloudybdone

Copy link
Copy Markdown
Author

Screenshot from 2022-01-17 23-28-55

@cloudybdone

Copy link
Copy Markdown
Author

Screenshot from 2022-01-17 23-38-19

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment