본문 바로가기

ETC

[Linux] ubuntu 16.04에 mysql 설치하기

반응형

 

 

버전확인

$ 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 명령어를 통해 데이터베이스를 생성하고, 추가, 수정할 수 있습니다.

 

 

반응형