Last active
February 8, 2022 16:39
-
-
Save cloudybdone/d93fb56cb90960a9f11395d22a033797 to your computer and use it in GitHub Desktop.
Vtiger CRM Installation on Ubuntu Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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
commented
Jan 18, 2022
Author

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


