반응형
버전확인
$ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 16.04.5 LTS Release: 16.04 Codename: xenial
mysql 설치
$ sudo apt-get update $ sudo apt-get install mysql-server
위 두 명령어를 통해 mysql 서버를 설치합니다.
mysql root 패스워드 설정
mysql의 root 패스워드를 입력합니다.
이로써 mysql 설치는 완료되었습니다.
mysql 서비스 시작
$ service mysql start
mysql 접속
$ mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 4 Server version: 5.7.28-0ubuntu0.16.04.2 (Ubuntu) Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql>
이제 mysql 명령어를 통해 데이터베이스를 생성하고, 추가, 수정할 수 있습니다.
반응형
'ETC' 카테고리의 다른 글
[프리미어 프로 오류] 파일 구조가 일관되지 않은 것을 발견... 메타데이터 읽기 쓰기 비활성화... 문제 해결법 (4) | 2021.01.14 |
---|---|
[MobaXterm] Network error: Software caused connection abort 뜨는 문제 해결 (1) | 2020.12.12 |
[mysql] foreign key가 존재하는 table을 truncate/delete할때 constraint 에러 문제 해결하기 (0) | 2020.09.12 |
무료 온라인 코딩 테스트 연습 사이트 5곳 추천 (0) | 2020.03.08 |
먹다남은 냉동피자 에어프라이어로 데우기 (시간, 온도) (0) | 2019.03.30 |