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 | 29 | 30 | 31 |
Tags
- new user
- 구글 클라우드
- Linux
- Liniux
- Fail2ban
- wordpress
- launch.json
- Mac
- vscode
- centos
- SSL
- crontab
- home page
- git pull
- MariaDB
- https
- Apache
- Certbot
- php
- CentOS7
- child theme
- mysql
- html
- Google Cloud
- Xdebug
- non-www
- front page
- root
- DOM Parser
- LetsEncrypt
Archives
- Today
- Total
목록new user (1)
between 0 and 1
add new user and set remote access
for internal access (localhost) CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost'; FLUSH PRIVILEGES; for remote access CREATE USER 'newuser'@'%' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'%'; FLUSH PRIVILEGES;
Software Development Engineering/MySQL
2021. 2. 10. 01:26