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 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
| # !/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
| #!/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 | |
| cd $HOME | |
| curl -sL https://deb.nodesource.com/setup_10.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
| sudo -i | |
| sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose | |
| chmod +x /usr/local/bin/docker-compose | |
| ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose | |
| apt-get update -y | |
| apt-get upgrade -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
| ##Installation | |
| # Run `bash` for shell | |
| bash | |
| # install Netdata directly from GitHub source | |
| bash <(curl -Ss https://my-netdata.io/kickstart.sh) | |
| #Modify the server configuration file | |
| sudo nano /etc/netdata/netdata.conf | |
| #uncomment following lines- |
OlderNewer