Search
 
SCRIPT & CODE EXAMPLE
 

SQL

how to install mysql ubuntu

sudo apt update
sudo apt install mysql-server
sudo service mysql start
sudo mysql_secure_installation
sudo mysql -u root 

In mysql console:
DROP USER 'root'@'localhost';
CREATE USER 'root'@'%' IDENTIFIED BY 'YOURPASSWORD';
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION;
FLUSH PRIVILEGES;
Comment

install MySQL in ubuntu

# Installing MySQL
sudo apt update
sudo apt install mysql-server

# — Configuring MySQL
sudo mysql_secure_installation
|-----> # Creating a Dedicated MySQL User and Granting Privileges
|		sudo mysql, mysql -u root -p,sudo mysql --defaults-file=/etc/mysql/debian.cnf
|		CREATE USER 'user'@'localhost' IDENTIFIED BY 'user1122';
|		# Change User Password
|		ALTER USER 'user_name'@'localhost' IDENTIFIED BY 'newPassword';
|		FLUSH PRIVILEGES;
|		# IF ERROR 1819 (HY000): Your password does not satisfy
|		# The current policy requirements (Source: ostechnix.com)
|		SET GLOBAL validate_password.policy = 0;
|		SET GLOBAL validate_password.length = 6; # If Required.
|		SET GLOBAL validate_password.number_count = 0; # If Required.
|		SHOW VARIABLES LIKE 'validate_password%'; # Show password level.
|
|		# Granting privileges
|		GRANT ALL PRIVILEGES ON * . * TO 'user'@'localhost';
|		SHOW GRANTS FOR 'user'@'localhost';
|		FLUSH PRIVILEGES;
|		
|		# Delete User
|		DROP USER 'user'@'localhost';
|		# Show All Users
|		SELECT User, Host FROM mysql.user;
|		
|-----> # Creating database
|		create database db_name;
|		# Show DataBase
|		SHOW DATABASES;
|		# Delete Database
|		DROP DATABASE db_name;
|-----> # Creating table
|		USE db_name;
|		CREATE TABLE t_name (id int, name varchar(100));
|		# Insert Data
|		INSERT INTO t_name VALUES (1, 'AliRaza');
|		# Delete Table
|		DROP TABLE t_name;
|		# Show All tabales in DB
|		USE db_name;
|		SHOW TABLES;
|
|-----> # Import Sql File
|		mysql -u username -p db_name < file.sql
|
|-----> # Export Sql Database
|		mysqldump -u username -p db_name > file.sql
Comment

install mysql on ubuntu

sudo apt-get update
sudo apt-get install mysql-server
Comment

ubuntu mysql install and configure

GRANT CREATE, ALTER, DROP, INSERT, UPDATE, DELETE, SELECT, REFERENCES, RELOAD ON *.* TO 'mysqluser'@'localhost' WITH GRANT OPTION;
Comment

PREVIOUS NEXT
Code Example
Sql :: duplicate entry 
Sql :: postgresql combine values in one field 
Sql :: rename table sql server 
Sql :: oracle apex charging debug 
Sql :: linq join 
Sql :: use group_concat in concat 
Sql :: add colum date in sql 
Sql :: sql declare variable 
Sql :: how to count null values in sql 
Sql :: mysql récupérer le code création de vue 
Sql :: change filed order in mysql 
Sql :: mysql get last inserted id 
Sql :: sql email Regex 
Sql :: PSQL use LIKE with timestamps 
Sql :: postgresql not case sensitive where in 
Sql :: mysql timestamp format 
Sql :: sql between 
Sql :: oracle shrink table 
Sql :: host 127.0 0.1 is not allowed to connect to this mysql server 
Sql :: create date sql 
Sql :: python simple connect to mysql 
Sql :: alternative for LIMIT sql 
Sql :: lack create session privilege oracle 
Sql :: create table with index mysql 
Sql :: sql download for windows 10 
Sql :: open postgresql.conf 
Sql :: creating table in sql 
Sql :: sql server delete table 
Sql :: mysql select row max date 
Sql :: sql where part of string match 
ADD CONTENT
Topic
Content
Source link
Name
6+1 =