- MYSQL 계정 생성
create user '계정ID'@'localhost' identified by '비밀번호';
- 모든 권한 부여
grant all privileges on *.* to '계정ID'@'localhost';
- 권한 적용
FLUSH PRIVILEGES;
- MYSQL 데이터베이스 만들기
CREATE DATABASE 데이터베이스 이름;
create user '계정ID'@'localhost' identified by '비밀번호';
grant all privileges on *.* to '계정ID'@'localhost';
FLUSH PRIVILEGES;
CREATE DATABASE 데이터베이스 이름;
For further actions, you may consider blocking this person and/or reporting abuse
Be Hai Nguyen -
Manik -
Be Hai Nguyen -
Renato Losio 💭💥 -
Once suspended, yesjin will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, yesjin will be able to comment and publish posts again.
Once unpublished, all posts by yesjin will become hidden and only accessible to themselves.
If yesjin is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to yesjin.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag yesjin:
Unflagging yesjin will restore default visibility to their posts.
Top comments (3)
create user '계정ID'@'%' identified by '비밀번호'; 외부접근허용 계정
use 데이터베이스 이름; 데이터베이스 사용
drop database 데이터베이스 이름; 삭제하는 기능