일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- JQuery checkbox 컨트롤
- modsecurity 설치
- PHP 구글 OTP 연동
- 비밀번호검증정규식
- 파라미터 & 오류
- PHP 정규식 예제
- javascript
- 비밀번호정규식
- 아파치 웹 서버의 정보 숨기기
- PHP 구글 OTP 인증
- mysql root 비밀번호 변경
- libxrender1
- bootstrap modal
- bootstrap
- usb efi 시스템 파티션 삭제
- 구글 OTP 인증
- svn 충돌 해결 resolve
- 세로 중앙 정렬
- html pdf 변환
- 우분투 mysql 비밀번호 없이 로그인 될때
- magic bytes
- wkhtmltopdf 실행 오류
- 부트스트랩4 세로 중앙 정렬
- php 특정 문자열 취환
- svn 충돌 해결 resolved
- group_concat 구분자
- mysqldump: Got error: 1045
- (using password: YES)" when trying to connect
- 자바스크립트비밀번호검증
- apache mod rewrite
- Today
- Total
투덜이 개발자
CentOS 7 에 MariaDB 10 업데이트 본문
CentOS 7 에 MariaDB 10 업데이트
MariaDB [(none)]> SET GLOBAL innodb_fast_shutdown=0;
Query OK, 0 rows affected (0.022 sec)
MariaDB [(none)]> \q
Bye
#MariaDB 중지
[root@ggcdev ~]# sudo systemctl stop mariadb.service
[root@ggcdev ~]#
#MariaDB 패키지 제거
[root@ggcdev ~]# yum remove mariadb-server
Removed:
MariaDB-server.x86_64 0:10.3.37-1.el7.centos
Complete!
#yum repository 추가
[root@ggcdev ~]# vi /etc/yum.repos.d/MariaDB.repo
[mariadb]
name = MariaDB
baseurl = http://yum.mariadb.org/10.10/centos7-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1
#yum update 및 upgrade하기
[root@ggcdev ~]# sudo yum update
[root@ggcdev ~]# sudo yum upgrade
#MariaDB 설치 재확인
[root@ggcdev ~]# rpm -qa | grep -i mariadb
#MariaDB 설치
[root@ggcdev ~]# sudo yum -y install mariadb-server
#MariaDB 시작
[root@ggcdev ~]# sudo systemctl start mariadb.service
[root@ggcdev ~]#
#기존 DB 업그레이드
[root@ggcdev ~]# sudo mysql_upgrade --user=root --password
[root@ggcdev /]# mysql --help | grep my.cnf
/etc/my.cnf ~/.my.cnf
vi ./etc/my.cnf
[mysqld]
innodb_buffer_pool_size=4077M
innodb_strict_mode = 0
innodb_log_file_size = 512M
'DataBase > MySQL' 카테고리의 다른 글
DB 서버 외부 mysql 커넥션 지연 (0) | 2023.05.08 |
---|---|
Mysql 서버 설정 (0) | 2023.05.04 |
MySQL / MariaDB like와 in을 동시 사용 => regexp (0) | 2023.01.19 |
CentOS 7 MariaDB Install (0) | 2022.11.09 |
[Mysql] Row size too large (> 8126). Changing some columns to TEXT or BLOB may help. In current row format, BLOB prefix of 0 bytes is stored inline. (0) | 2022.09.26 |