0 Comments

MySQL 8: Random Password Generator

MySQL 8 now has a random password generator, and CREATE USER, ALTER USER, and SET PASSWORD statements have the capability of generating random passwords. Source: MySQL 8: Random Password Generator

0 Comments

How-to Change back and NOT use mysql_native_password

To change back and NOT use mysql_native_password and use caching_sha2_password do the following: login to mysql by running following command sudo mysql -p At password prompt, enter your mysql password Run following command to change back to use caching_sha2_password ALTER USER ‘root’@’localhost’ IDENTIFIED WITH caching_sha2_password;

0 Comments

How To Create a New User and Grant Permissions in MySQL | DigitalOcean

MySQL is a powerful database management system used for organizing and retrieving data. This tutorial explains how to to create new MySQL users and how to gr… Source: How To Create a New User and Grant Permissions in MySQL | DigitalOcean

0 Comments

PostgreSQL In Windows Subsystem for Linux (WSL) | by Harshit Yadav | Medium

sudo service postgresql start Source: PostgreSQL In Windows Subsystem for Linux (WSL) | by Harshit Yadav | Medium

0 Comments

MySQL – ERROR 1045 (28000): Access denied for user ‘root’@’localhost’ (using password: YES)

Source: ERROR 1045 (28000): Access denied for user ‘root’@’localhost’ (using password: YES)

0 Comments

How To Install Linux, Apache, MySQL, PHP (LAMP) Stack on Ubuntu 22.04 | DigitalOcean

A “LAMP” stack is a group of open-source software that is typically installed together to enable a server to host dynamic websites and web apps. This term is… Source: How To Install Linux, Apache, MySQL, PHP (LAMP) Stack on Ubuntu 22.04 | DigitalOcean