mysql create user and grant permission
Create user CREATE USER ‘super’@’%’ IDENTIFIED BY PASSWORD ‘*01A6717B58FF5C7EAFFF6CB7C96F7428EA65FE4C’; Grant Permission: GRANT ALL ON *.* TO easy@’10.0.20.212′; Flush Privileges: FLUSH PRIVILEGES
Read moreCreate user CREATE USER ‘super’@’%’ IDENTIFIED BY PASSWORD ‘*01A6717B58FF5C7EAFFF6CB7C96F7428EA65FE4C’; Grant Permission: GRANT ALL ON *.* TO easy@’10.0.20.212′; Flush Privileges: FLUSH PRIVILEGES
Read moreTo Resolve such kind of issue, check the master relay log as follow; mysql> slave stop; Query OK, 0 rows
Read moreWaiting for master update The initial state before Connecting to master. Connecting to master The thread is attempting to connect
Read moreMostly MySQL uses /var/lib/mysql directory as default data directory for Linux based systems We are showing here how to change
Read moreMySQL has introduced some new interesting features, like stored procedures and triggers. I will show in this small post how
Read moreI connect to mysql from my Linux shell. Every now and then I run a SELECT query that is too
Read moreWhat i want to do is : example db id name —– —— 1 Mark 2 Mike 3 Paul 4
Read moreSELECT <…> FROM A.table1 t1 JOIN B.table2 t2 ON t2.column2 = t1.column1;
Read moreThe idea behind partitioning isn’t to use multiple servers but to use multiple tables instead of one table. You can
Read more