250x250
반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- Liniux
- Apache
- wordpress
- Fail2ban
- crontab
- Linux
- launch.json
- Google Cloud
- centos
- LetsEncrypt
- non-www
- front page
- CentOS7
- SSL
- child theme
- html
- Xdebug
- DOM Parser
- vscode
- root
- php
- home page
- Certbot
- 구글 클라우드
- mysql
- Mac
- new user
- MariaDB
- https
- git pull
Archives
- Today
- Total
between 0 and 1
[MySQL] Make Superuser (root user) 본문
Software Development Engineering/MySQL
[MySQL] Make Superuser (root user)
devxpert.yoon 2021. 2. 10. 16:53728x90
반응형
mysql> GRANT ALL PRIVILEGES ON *.* TO myuser@localhost WITH GRANT OPTION;
or
mysql> GRANT ALL PRIVILEGES ON *.* TO myuser@localhost IDENTIFIED BY 'password' WITH GRANT OPTION;
to make super(root) user,
"WITH GRANT OPTION" should be applied.
728x90
반응형
'Software Development Engineering > MySQL' 카테고리의 다른 글
Restore MySQL Dump (0) | 2021.02.10 |
---|---|
add new user and set remote access (0) | 2021.02.10 |
[MySQL] backup (mysqldump) bash script without password (0) | 2021.01.26 |
[MySQL] Too many connection error를 만났을 때 해결 방법 (max_connection 변경을 통한). 그리고 max_connection이 214 이상으로 설정되지 않는 경우 해결 방법 (0) | 2018.07.01 |