Search
 
SCRIPT & CODE EXAMPLE
 

SQL

Mysql Install Ubuntu with native password

#installation
sudo apt update
sudo apt install mysql-server
sudo service mysql status

sudo mysql_secure_installation
#You will be asked to configure the VALIDATE PASSWORD PLUGIN which is used to test the strength of the MySQL users' passwords. Press ENTER if you don’t want to set up the validate password plugin.
#On the next prompt, You should answer “Y” (yes) to all questions.
#the root user is authenticated by the auth_socket plugin by default.
#This means that you can’t authenticate as root by providing a password.

#password type change
sudo mysql
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'very_strong_password';
FLUSH PRIVILEGES;
quit
Comment

PREVIOUS NEXT
Code Example
Sql :: bitmap join index 
Sql :: generate sql trigger through ef migration 
Sql :: Downloading snowsql for Linux 
Sql :: execute stored procedure without db set 
Sql :: ring MySQL enable or disable the auto commit feature 
Sql :: Manage Database in MySQL 
Sql :: can we compare two timestamps in mysql 
Sql :: avoid duplicate in one to many relationship join in sql 
Sql :: month() in sql 
Sql :: Enable outgoing remote MySQL access 
Sql :: get similar records in sql for a special number 
Sql :: pl sql turn off variable substitution 
Sql :: list foreign user mapping postgres 
Sql :: liquibase default-schema in sql 
Sql :: Select all columns except one in MySQL? 
Sql :: union statement mysql 
Sql :: get many value to 1 column sql 
Sql :: oracle query to see what scema i am working in 
Sql :: dbname+tablename 
Sql :: is there any limit of using joins in single mysql query ? 
Sql :: where to find job 0x.. in ddlevents 
Sql :: oracle run_duration average 
Sql :: sql to mongodb query converter 
Sql :: convert varchar to time sql 
Sql :: join multiple tables 
Sql :: mysql extract days 
Sql :: xamarin sql lite create table if not exist 
Csharp :: unity delete all children 
Csharp :: open link c# 
Csharp :: c# list to string comma separated 
ADD CONTENT
Topic
Content
Source link
Name
8+5 =