Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- snmp
- semanage
- c3 step graph
- telegraf
- grafana dashboard
- 정규식 컴파일
- c3 second
- regex_search
- CentOS7
- influxdb 설치
- selinux port 등록
- c3 축 가리기
- 백준
- 1697
- gcc regex
- python subprocess
- python popen
- python os
- InfluxDB
- 정규식 활용
- 정규식 문자열 출력
- g++ 업데이트
- gcc 업데이트
- c3 축 없애기
- linux시간으로 변경
- subporcess path
- snmp test
- c3 초
- centos pyhon 설치
- c++ 정규식
Archives
- Today
- Total
리셋 되지 말자
docker, gitlab runner 설치 및 테스트 스크립트 본문
설치 스크립트
#!/bin/bash
amazon-linux-extras install -y docker
usermod -aG docker ec2-user
systemctl enable docker
systemctl start docker
curl -L "https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.rpm.sh" | bash
yum install -y gitlab-runner-14.10.0-1
버퍼/캐시 비우기(/swap 파일이 스왑 메모리로 사용되고 있을 경우)
echo 3 > /proc/sys/vm/drop_caches
swapoff -a
swapon /swapfile
스왑파일을 이용한 스왑 메모리 할당
# 2GB 할당
sudo dd if=/dev/zero of=/swapfile bs=4KB count=512000
512000+0 records in
512000+0 records out
2048000000 bytes (2.0 GB) copied, 14.9841 s, 137 MB/s
# 1GB 할당
dd if=/dev/zero of=/swapfile bs=4KB count=256000
chmod 600 /swapfile
mkswap /swapfile
swapon /swapfile
스왑 used 추출 커맨드
free -m
total used free shared buff/cache available
Mem: 32072 2879 13432 68 15760 28680
스왑: 2047 0 2047
free -m | awk '/^Swap/ {print $3}'
free -m | awk '/^스왑/ {print $3}'
0
도커, 깃랩러너 설치 및 스왑 활성화
#!/bin/bash
amazon-linux-extras install -y docker
usermod -aG docker ec2-user
systemctl enable docker
systemctl start docker
curl -L "https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.rpm.sh" | bash
yum install -y gitlab-runner-14.10.0-1
dd if=/dev/zero of=/swapfile bs=4KB count=512000
chmod 600 /swapfile
mkswap /swapfile
swapon /swapfile
'GitLab' 카테고리의 다른 글
gitlab runner shell executor (0) | 2022.06.16 |
---|---|
CI 파이프라인에 사용된 최대 swap memory 크기 구하기 (0) | 2022.05.17 |
gitlab runner 특정 버전 로컬 설치 (0) | 2022.05.11 |
[GitLab CI] docker gitlab-runner 등록 및 간단 예제 (2) | 2021.02.18 |
Comments