MySQL Download URL
https://dev.mysql.com/get/Downloads/MySQL-5.6/mysql-5.6.46-linux-glibc2.12-x86_64.tar.gz
- Uninstall any existing version of MySQL
sudo rm /var/lib/mysql/ -R
| // get response code for uri | |
| function HTTPResponse(uri) | |
| { | |
| var response_code ; | |
| try { | |
| response_code = UrlFetchApp.fetch(uri).getResponseCode().toString(); | |
| } | |
| catch(error) { | |
| response_code = error.toString().match(/returned code (\d\d\d)\./)[1]; | |
| } |
| Создание пользователя | |
| --------------------- | |
| adduser username | |
| usermod -aG sudo username | |
| group username | |
| su username | |
| --------------------------------------- | |
| Компиляции python 3.6 | |
| ---------------------- | |
| sudo apt-get install -y make build-essential libssl-dev zlib1g-dev |