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
- bash
- Quartz
- 줄바꿈 문자
- Eclipse
- 네트워크
- resource
- IntelliJ
- plugin
- lsof
- Source
- tomcat
- port
- grep
- netsh
- VirtualBox
- vscode
- xargs
- Windows
- JavaScript
- maVen
- find
- profile
- 단축키
- GIT
- web.xml
- ssh
- context
- Windows 10
- import
- Mac
Archives
- Today
- Total
develog
[mysql] mysql 명령어로 DB 접속하기 본문
# '-p' 만 입력하면 비밀번호를 입력하라는 프롬프트가 나타난다
$ mysql -u root -p
Enter password:
# '-p비밀번호' 로 비밀번호를 넣어주면 비밀번호 입력을 묻는 프롬프트가 나타나지 않는다
$ mysql -u root -pMyPass1234
Comments