-
mysql 쉘 쿼리 실행IT 2020. 5. 20. 14:51
#암호 설정되어 있찌 않다.
mysql -uroot > root.sql
#root.sql
use mysql;
update user set password=password('dhormfo') where user='root';
grant all privileges on *.* to root@'%' identified by 'dhormfo';
flush privileges;
'IT' 카테고리의 다른 글
tomcat 웹 경로 웹소스 (0) 2020.05.21 mysql 명령어 (0) 2020.05.20 perl iptables (0) 2020.05.20 yum 패키지 위치 (0) 2020.05.19 tomcat8 루트폴더 변경 (0) 2020.05.17