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 |
Tags
- Mac
- root
- CentOS7
- child theme
- crontab
- https
- vscode
- git pull
- Google Cloud
- DOM Parser
- Apache
- non-www
- centos
- launch.json
- SSL
- html
- Fail2ban
- LetsEncrypt
- 구글 클라우드
- front page
- php
- wordpress
- new user
- mysql
- home page
- Xdebug
- Linux
- MariaDB
- Liniux
- Certbot
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