Linux 472

gitlab runner install

# curl -L https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.rpm.sh | sudo bash# yum -y install gitlab-runner설치 완료 gitlab-runner register구동하고 정보를 입력 해주시면 되는데.runner 만들 프로젝트에 가서 setting - CI / CD 선택 runners expand 되어 있는걸 누르면 아래와 같이 화면이 뜬다.# gitlab-runner registerPlease enter the gitlab-ci coordinator URL (e.g. https://gitlab.com/):// gitlab 사이트 주소 예) https://gitlab.test...

Linux 2021.01.13

centos8 nfs nfsd: too many open connections, consider increasing the number of threads

centos7 버전에서 nfsd: too many open connections, consider increasing the number of threads 와 같이 에러가 발생 하면 /etc/sysconfig/nfs 파일에서 #RPCNFSDCOUNT=8 이부분을 주석 제거 하고 수치 변경해주면 됐다. 하지만 centos 8 nfs 버전에서는 위 경로가 변경되어 /etc/nfs.conf 위 파일을 수정하고 [nfsd] # debug=0 # threads=8 threads=1024 주석 제거 하고 threads 값을 변경해주면 된다. 서비스 재시작 systemctl restart nfs-server.service 혹시 모르니 [mountd] threads=1024 애도 추가 해주자.

Linux 2020.12.22

Querying mergeinfo requires version 3 of the FSFS filesystem schema; filesystem '/data/test/db' uses only version 2 [501, #200007]

Querying mergeinfo requires version 3 of the FSFS filesystem schema; filesystem '/data/test/db' uses only version 2 [501, #200007]svn 로그를 보면 라고 에러가 뜨는 경우가 있다.버전이 안맞아서 그렇다 버전 업그레이드를 해주자. svnadmin upgrade /data/test/db 뒤에 db 는 빼고# svnadmin upgrade /data/test저장소 잠금을 획득했습니다.기다려 주십시오; 저장소 업그레이드는 시간이 소요될 수 있습니다... 업데이트 완료됨.하면 에러가 사라질것 이다.

Linux 2020.12.18

apache 튜닝 Prefork Worker Event

Prefork MPM 하나의 쓰레드를 가진 다수의 자식 프로세스를 사용.각각의 프로세스는 하나의 커넥션을 담당한다. 실행중인 프로세스를 복사하여 자식 프로세스를 만드는데 이때 메모리까지 복사하여 많은 메모리를 사용한다. CPU 가 1~2개일때 성능이 좋다. Worker MPM 다수의 쓰레드를 지닌 다수의 자식 프로세스를 사용. 각각의 쓰레드가 하나의 커넥션을 핸들링한다. 쓰레드간 메모리를 공유한다. 멀티 CPU 일때 성능이 좋다. Event MPM 2.4 버전부터 새로 생긴 모드. Nginx 처럼 Event driven 방식으로 성능이 뛰어나다. default 는 prefork 다. 자신의 mpm 확인 방법은 httpd -V Server version: Apache/2.4.6 (CentOS) Server..

Linux 2020.12.14

CPU 8: Machine Check: 0 Bank 0: 9400004000040150

[1454554.401354] mce: [Hardware Error]: Machine check events logged [1454554.401363] mce: [Hardware Error]: CPU 8: Machine Check: 0 Bank 0: 9400004000040150 [1454554.401365] mce: [Hardware Error]: TSC 0 ADDR 1ffffa243d441 [1454554.401366] mce: [Hardware Error]: PROCESSOR 0:a0655 TIME 1605253343 SOCKET 0 APIC 10 microcode c8 CPU 10900K 환경에 +B460 보드로 셋팅하고 Centos 7.x 로 설치를 하고 사용중에 위와 같이 에러가 발생 했다. ..

Linux 2020.11.16
728x90
320x100