일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- navicat
- disk 100% 사용
- author style
- postfix
- ZipArchive 오류
- php excel
- Laravel
- php 7.3
- OTP 보정오류
- 갈레라
- php zip 모듈
- nginx 1.12.0
- wsrep
- centos7
- error 1728
- OTP 오류
- MariaDB
- php 업로드 파일 삭제
- html 구성
- 복구
- 국민은행(기업)
- php 파일 삭제
- user style
- nginx
- Oracle
- 디스크 용량 확인
- DOTCOM 마케팅 설계자 SECRET
- mysql.proc 오류
- disk full
- CSS
- Today
- Total
목록MariaDB (5)
Jehna :)
서버가 왜 그랬는지 모르겠지만 ㅠㅠ.. 강제 종료되면서 디비가 손상되었다. 이럴 수도 있는건가..? 아무튼 /var/lib/mysql을 백업해둔게 있어 복구해보려고 한다. innodb로 복구를 하기 위해선 /var/lib/mysql/안에 ib_logfile0, ib_logfile1, ibdata1등등이 필요하다. /var/lib/mysql전체 백업되어 있으면 끝~ 1. /etc/my.cnf 추가 설정 innodb_force_recovery = 0 innodb_purge_threads = 0 2. /var/lib/mysql 백업본으로 교체 - 백업해둔 mysql로 변경 3. mariadb 재시작 systemctl restart mariadb ※ 복구해서 잘 사용하다 갑자기 Cannot load from m..
mariadb root패스워드 분실로 패스워드 변경 후 서비스 재실행하니까.. 아래 오류가 떴다. - Cent OS 7 - Mariadb 10.X [ERROR] WSREP: rsync SST method requires wsrep_cluster_address to be configured on startup. /etc/my.cnf.d/galera.cnf 수정 (wsrep_on 설정값 변경) // 변경 전 wsrep_on = 1 // 변경 후 wsrep_on = 0 - 변경 후, mariadb 재시작!! 갈레라 클러스터를 사용하지 않으면서 사용함으로 되어 있어 발생한 오류
■ 데이터베이스 생성 CREATE DATABASE 데이터베이스명; ■ 사용자 생성 - '%': 어디서든 접속 가능 - 'localhost': 로컬에서만 접속 가능 CREATE USER '아이디'@'%' IDENTIFIED BY '비밀번호'; ■ 사용자 권한주기 GRANT ALL PRIVILEGES ON 데이터베이스.* TO '아이디'@'%'; ■ 새로고침 FLUSH PRIVILEGES;
"Drupal 설치하기" ------------------------------------------------------------------------------------------------------------------* 테스트 환경 - CentOS7 + Nginx 1.12.0 + Php7 + MariaDB 10.1 + Drupal 8.3.1 - nginx 설치: http://jehna.tistory.com/17 - php7 설치 및 nginx 연동: http://jehna.tistory.com/18 - mariDB 설치: http://jehna.tistory.com/21---------------------------------------------------------------------..
"CentOS7 MariaDB 설치하기" yum install MariaDB-server 로 MariaDB가 설치 안될 경우! 아래 사이트를 참고하면 좋다. https://downloads.mariadb.org/mariadb/repositories/#mirror=kaist&distro=CentOS&distro_release=centos7-amd64--centos7&version=10.1 1. /etc/yum.repos.d/MariaDB.repo 파일 생성 # vim /etc/yum.repos.d/MariaDB.repo # MariaDB 10.1 CentOS repository list - created 2017-05-02 01:43 UTC # http://downloads.mariadb.org/maria..