본문 바로가기
  • 배움에는 끝이 없다.

Application11

[SQL] innodb_flush_log_at_trx_commit 란? (Innodb insert 속도를 올려보자) ◆ innodb_flush_log_at_trx_commit 란...? https://dev.mysql.com/doc/refman/8.0/en/innodb-parameters.html MySQL :: MySQL 8.0 Reference Manual :: 15.14 InnoDB Startup Options and System Variables dev.mysql.com 요약하자면.. innodb_flush_log_at_trx_commit 이란 쿼리 요청이 디스크에 저장되는 방법이 지정된 변수이다. 즉 이 값을 변경하면 transaction 방법을 수정해서 insert 속도를 올릴 수 있다는 것 같다. ◆ transaction, commit이란? DB에서의 transaction이란 정상적으로 완료된 일련의 작업.. 2023. 1. 29.
[SQL] MariaDB slow query log 적용 안될 시 확인 방법 ※ mariadb slow query 를 3초나 5초등으로 적용 했는데도 슬로우쿼리에 모든 쿼리가 전부 쌓이는 증상이 있었다. ※ 공식홈페이지 참고 https://mariadb.com/kb/en/library/server-system-variables/#log_queries_not_using_indexes Server System Variables List of system variables. mariadb.com log_queries_not_using_indexes Description: Queries that don't use an index, or that perform a full index scan where the index doesn't limit the number of rows, will.. 2023. 1. 29.
[Apache] Apache error 모음 1. httpd (pid xxxx) already running ■ apache 서비스가 실행되어 있는 상태에서 apache start 명령어를 입력하여 httpd(apace) 프로세스가 실행되어 있다는 메시지 입니다. ■ 80 Port가 안떠있는데 해당 메세지가 나오는 경우 apache daemon이 이상이 있는것으로 강제 종료 하고 재시작 진행 2. AH00558: httpd: Could not reliably determine the server"s fully qualified domain name, using xxxx-xxxx.test.com. Set the "ServerName" directive globally to suppress this message ■ 서버의 도메인을 확인할 수 없어 발.. 2023. 1. 29.
[Apache] Apache 도메인 연결 추가 설정 (CentOS) - YUM (Package) ■ 환경 OS : CentOS 7 Apache : Apache/2.4.6 (RPM) ■ Package (yum) ■ 설치 경로 : /etc/httpd ■ DocumentRoot 경로 : /home/beatup/www ■ 연결할 도메인 정보 : beatup_test.com 1) vhost 파일 생성 [root@beatup ~]# touch /etc/httpd/conf.d/vhost.conf [root@beatup ~]# ll /etc/httpd/conf.d/vhost.conf -rw-r--r-- 1 root root 2 2022-11-21 13:57 /etc/httpd/conf.d/vhost_test.conf 2) vhost.conf에 도메인 추가 설정 ■ 설정 파일 경로 : /opt/apache/conf.. 2023. 1. 29.