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
| # 0. BEFORE ANYTHING | |
| $ sudo su | |
| # 1. UPDATING THE SERVER | |
| # Define your timezone | |
| $ timedatectl set-timezone America/Sao_Paulo | |
| # Update packages | |
| $ apt-get 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 apt purge mysql-client-8.0 mysql-client-core-8.0 mysql-server mysql-server-8.0 | |
| sudo apt-get remove --purge mysql* | |
| sudo apt-get purge mysql* | |
| sudo apt-get autoremove | |
| sudo apt-get autoclean | |
| sudo apt-get remove dbconfig-mysql | |
| sudo apt-get dist-upgrade | |
| /* WARNING: THIS WILL DELETE ALL THE DATA INCLUDING YOUR DATABASES */ |
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 OPENSSL | |
| cd /usr/local/src/ | |
| wget https://www.openssl.org/source/openssl-1.1.1g.tar.gz | |
| tar -xf openssl-1.1.1g.tar.gz | |
| cd openssl-1.1.1g | |
| sudo ./config -Wl,--enable-new-dtags,-rpath,'$(LIBRPATH)' | |
| sudo make | |
| sudo make install |
OlderNewer