openvpn CRL.pem Expired
https://bozza.ru/art-287.html
Tecnología
https://bozza.ru/art-287.html
1 apt-get update2 chmod 0600 /var/swapfile3 mkswap /var/swapfile4 swapon /var/swapfile10 vi /etc/fstab11 add to fstab: /var/swapfile swap swap defaults 0 012 mysql -u root -h localhost -p13 mysql -u root -h localhostmysql> use mysql;UPDATE user set plugin=’mysql_native_password’ where user=’root’;ALTER USER ‘root’@’localhost’ IDENTIFIED WITH mysql_native_password BY ‘newpassword’;FLUSH PRIVILEGES;quit24 Install PHP 7.325 apt install software-properties-common26 add-apt-repository ppa:ondrej/php27 apt install php7.3 php7.3-common php7.3-opcache php7.3-cli php7.3-gd php7.3-curl php7.3-mysql28 php -v 29 adduser webmaster, user of the folder /home/webmaster in order to be used by…
MYSQL: to connect locally from a linux user to mysql using the root mysql user. From root linux account, mysql -u root -h localhost -p, mysql> use mysql; UPDATE user set plugin=’mysql_native_password’ where user=’root’; ALTER USER ‘root’@’localhost’ IDENTIFIED WITH mysql_native_password BY ‘newpassword’; FLUSH PRIVILEGES; quit Apache2: sometime the apache just broke with a mutex error. add to apache2.conf Mutex posixsem Mysql: sometimes broke because have not enough memory, in that case add a swapfile, aws doesn’t offer swap by default…