mysql root ๊ณ์ ๋ณ๊ฒฝ
use mysql;
update user set user='admin' where user='root';
flush privileges;
MySQL ๋ฒ์ ผ์ด 5.7 ์ดํ์ผ๋ ์๋ ์คํ
update user set password=PASSWORD('new password') where user='admin';
MySQL ๋ฒ์ ผ์ด 5.7 ์ด์์ผ๋ ์๋ ์คํ
update user set authentication_string=PASSWORD('new password') where user='admin';
'๋ฆฌ๋ ์ค > MYSQL' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
MariaDB(Mysql) varํด๋์์ homeํด๋๋ก ๋ณ๊ฒฝ (0) | 2017.04.25 |
---|---|
SQL INJECTION ๊ณต๊ฒฉ ์์ ์ฟผ๋ฆฌ๋ฌธ (0) | 2016.06.16 |