현재 사용중인 SWAP 메모리 확인
more /proc/swaps
SWAP 메모리로 사용할 파일 생성 (파일당 1GB)
cd /var/tmp
dd if=/dev/zero of=swapfile1 bs=1024 count=1048576
dd if=/dev/zero of=swapfile2 bs=1024 count=1048576
SWAP 영역으로 설정
/sbin/mkswap -c -v1 /var/tmp/swapfile1
/sbin/mkswap -c -v1 /var/tmp/swapfile2
SWAP 파일 사용시작
/sbin/swapon /var/tmp/swapfile1
/sbin/swapon /var/tmp/swapfile2
바뀐 SWAP 메모리 확인
more /proc/swaps
시작시 SWAP 메모리가 적용이 되도록 설정
vi /etc/rc.d/rc.sysinit
아래 라인을 검색
swapon -a
다음 내용을 같은 줄에 추가
swapon /var/tmpswapfile1 swapon /var/tmp/swapfile2
결과는 다음과 같음
swapon -a swapon /var/tmpswapfile1 swapon /var/tmp/swapfile2
* 출처 : http://shineum.tistory.com/65
'IT 개발, develop > linux' 카테고리의 다른 글
php 5.X -> php 7.X 업그레이드 (centos) (0) | 2018.11.09 |
---|---|
redmine 한글 저장 시 error / ActiveRecord::StatementInvalid (Mysql2::Error: Incorrect (0) | 2018.10.31 |
redmine linux centos7 에 설치 (0) | 2018.10.31 |
[ linux ] apache 로그 로테이트 설정 (0) | 2018.08.23 |
[linux / centos] centos7 - Apache, PHP, MariaDB 설치 (0) | 2018.08.23 |
댓글