일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Tibero
- SVN
- Date and Time Function
- Data and Time Functions
- 윈도우
- MySQL
- 티베로
- String Function and Operators
- 방화벽
- Oracle
- HTTP
- 전자정부표준프레임워크
- Date and Time Functions
- 전자정부 표준프레임워크
- String Functions and Operators
- 오라클
- Sring Functions and Operators
- String Functions and Date Operators
- Today
- Total
웹이야기
4. MySQL 설치(리눅스) - yum 으로 설치 본문
리눅스에서 MySQL 설치하기
1. yum 으로 설치
1)
설치 여부 확인
# rpm -qa | grep mysql[root@localhost ~]# rpm -qa | grep mysql
mysql-8.0.17-3.module_el8.0.0+181+899d6349.x86_64
mysql-errmsg-8.0.17-3.module_el8.0.0+181+899d6349.x86_64
mysql-common-8.0.17-3.module_el8.0.0+181+899d6349.x86_64
mysql-server-8.0.17-3.module_el8.0.0+181+899d6349.x86_64
위와 같이 나오면 이미 설치되어 있는 것임
2)
삭제
# yum remove mysql-server
3) 설치
# yum install mysql-server
4) 시작
# service mysqld start
start : 시작
stop : 중지
5) root 로 로그인
* root 비밀번호 확인
#cat /var/log/mysql/mysqld.log
2020-01-07T11:14:09.210220Z 0 [System] [MY-013169] [Server] /usr/libexec/mysqld (mysqld 8.0.17) initializing of server in progress as process 31182
2020-01-07T11:14:13.384632Z 5 [Warning] [MY-010453] [Server] root@localhost is created with an empty password ! Please consider switching off the --initialize-insecure option.
2020-01-07T11:14:14.380324Z 0 [System] [MY-013170] [Server] /usr/libexec/mysqld (mysqld 8.0.17) initializing of server has completed
2020-01-07T11:14:18.289118Z 0 [System] [MY-010116] [Server] /usr/libexec/mysqld (mysqld 8.0.17) starting as process 31239
비밀번호가 비었다고 나오므로
# mysql -uroot -p
Enter password:
에서 Enter 치고 로그인.
mysql 에서 빠져나갈 때는
mysql> quit ;
으로 나올 수 있다.
'D > MySQL' 카테고리의 다른 글
6. MySQL 설치(소스 컴파일, 5.7, 8.x 버전) (0) | 2020.01.09 |
---|---|
5. MySQL 설치(리눅스) - 소스 컴파일 (1) | 2020.01.08 |
3. MySQL 다운로드 (0) | 2020.01.07 |
2. MySQL 접속 확인/연결 확인 (0) | 2020.01.07 |
1. MySql 설치(윈도우 환경, MySQL5.5) (0) | 2020.01.06 |