Skip to content

Instantly share code, notes, and snippets.

@linuxkeepup
Last active November 13, 2022 06:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linuxkeepup/ced315f162dfdaf5b878443f746b9e69 to your computer and use it in GitHub Desktop.
Save linuxkeepup/ced315f162dfdaf5b878443f746b9e69 to your computer and use it in GitHub Desktop.
Deploy vTiger CRM on Linux
Please send me your query for vTiger CRM Installation support service
WhatsApp: http://tiny.cc/linuxkeepup
sudo -i
apt update -y
apt-get upgrade -y
apt update -y
apt install build-essential checkinstall
apt install ubuntu-restricted-extras
apt install software-properties-common
apt install apt-show-versions
apt upgrade -o APT::Get::Show-Upgraded=true
apt-show-versions | grep upgradeable
apt update -y
apt-get upgrade -y
add-apt-repository ppa:nilarimogard/webupd8
apt update -y
apt install launchpad-getkeys
launchpad-getkeys
add-apt-repository ppa:git-core/ppa
apt update -y
apt install git
git config --global user.name "name"
git config --global user.email mail@domain.com
ssh-keygen -t rsa -b 4096 -C "email@gmail.com"
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa
# remove all and add below codes
[mysqld]
port = 3306
set global sql_mode="NO_BACKSLASH_ESCAPES,STRICT_TRANS_TABLE,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"
# save and exit ctrl+s and ctrl+x
a2enmod rewrite
systemctl restart apache2
systemctl reload apache2
systemctl status apache2
apachectl -t
# brows URL http://example.com or localhost
# https://wiki.vtiger.com/index.php/Installation_with_LAMP
# https://community.vtiger.com/help/vtigercrm/administrators/installation.html
# Followed by: https://code.vtiger.com/vtiger/vtigercrm-manual/wikis/Administration-Docs
@linuxkeepup
Auth
@linuxkeepup
Copy link
Author

v1

@linuxkeepup
Copy link
Author

v2

@linuxkeepup
Copy link
Author

v3

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