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 MEAN Stack Setup contact with me: | |
Email: [email protected] | |
Skype: https://join.skype.com/ | |
Telegram:https://t.me/LinauxTerminology | |
WhatsApp: +8801408694088 | |
Imo: +8801408694088 | |
apt-get update -y |
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
#!/bin/sh | |
# For version 12 | |
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - | |
sudo apt-get install -y nodejs | |
sudo apt-get install gcc g++ make | |
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - | |
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list | |
sudo apt-get update && sudo apt-get install yarn |
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
# !/bin/sh | |
sudo apt update | |
sudo apt install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev libsqlite3-dev wget libbz2-dev | |
sudo apt-get install build-essential checkinstall | |
sudo apt autoremove | |
sudo apt-get install libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev libffi-dev zlib1g-dev | |
cd /opt | |
sudo wget https://www.python.org/ftp/python/3.8.6/Python-3.8.6.tgz | |
sudo tar xzf Python-3.8.6.tgz |
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 Docker & Docker Compose Setup contact with me: | |
Email: [email protected] | |
Skype: https://join.skype.com/ | |
Telegram: https://t.me/LinauxTerminology | |
WhatsApp: +8801408694088 | |
Imo: +8801408694088 | |
twiteer:https://twitter.com/LinauxTerminoal | |
facebook:https://www.facebook.com/LinauxTerminology | |
bip:01314582960 | |
instagram:[email protected] |
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 Drupal CMS Setup contact with me: | |
Email: [email protected] | |
Skype: https://join.skype.com/ | |
Telegram: https://t.me/LinauxTerminology | |
WhatsApp: +8801408694088 | |
Imo: +8801408694088 | |
twiteer:https://twitter.com/LinauxTerminoal | |
facebook:https://www.facebook.com/LinauxTerminology | |
bip:01314582960 |
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
sudo apt-get install software-properties-common python-software-properties | |
sudo add-apt-repository ppa:ondrej/php | |
sudo apt update -y | |
sudo apt-get install -y php5.6 | |
php --version | |
which php |
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
# !/bin/sh | |
# Install Packages | |
sudo apt update | |
python3 -V | |
sudo apt install python3-django | |
django-admin --version | |
#Install Virtual Environment | |
sudo apt update |
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
sudo -i | |
apt update | |
apt install mysql-server | |
mysql_secure_installation | |
nano /etc/mysql/mysql.conf.d/mysqld.cnf | |
#And then change the bind-address line to 0.0.0.0 | |
# Save and exit | |
ufw allow from any to any port 3306 proto tcp |
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 Humhub Setup contact with me: | |
Email: [email protected] | |
Skype: https://join.skype.com/ | |
Telegram: https://t.me/LinauxTerminology | |
WhatsApp: +8801408694088 | |
Imo: +8801408694088 | |
twiteer:https://twitter.com/LinauxTerminoal | |
facebook:https://www.facebook.com/LinauxTerminology | |
bip:01314582960 | |
instagram:[email protected] |
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
##Install Nginx | |
sudo apt update | |
sudo apt install nginx | |
systemctl restart nginx | |
systemctl enable nginx | |
sudo service nginx status | |
sudo ufw allow OpenSSH | |
sudo ufw allow 'Nginx HTTP' | |
sudo ufw enable | |
sudo ufw status |