Check battery status on terminal
$ sudo apt-get install acpi $ acpi
$ sudo apt-get install acpi $ acpi
Set root password MySQL for the first time: $ mysqladmin -u root password NEWPASSWORD Change your existing root password: $ mysqladmin -u root -p’oldpassword’ password newpass
This is how to generate the .csr file, requirement for SSL certificate. $ openssl req -new -newkey rsa:2048 -nodes -keyout server.key -out server.csr —– Country Name (2 letter code) [AU]:ID State or Province Name (full name) [Some-State]: Locality Name (eg, city) []: Organization Name (eg, company) [Internet Widgits Pty Ltd]: Organizational Unit Name (eg, section) … Read more
$ sudo vim /etc/my.cnf (for mysql) $ sudo vimĀ /etc/mysql/my.cnf (for mariadb) Find these variables, and set the value: [mysqld] skip-grant-tables bind-address=0.0.0.0 … skip-grant-tables is optional, though.