Logo

Category:리눅스 서버관리

2025년 04월 16일

내 linux 가 32bit 인지 64bit 인지 확인방법

#uname -a 하시면 됩니다. Linux kkamagi2 2.6.18-8.1.15.el5 #1 SMP Mon Oct 22 08:32:04 EDT 2007 i686 i686 i386 GNU/Linux 32bit시에 위와 같이 뜨고.. 64bit시에는....

Continue Reading
2025년 04월 16일

rm 으로 안지워질때 find 명령으로 삭제방법

$ find . -name “b*” -exec rm -rf {} \; 현재 디렉토리(.) 하부에 b로 시작하는 파일은 모두 삭제하라 $ find . -name “*” -exec rm -rf...

Continue Reading
2025년 04월 16일

vi 에서 색깔 설정하기

vi color vi로 파일을 열때 특정 option이 자동수행되게 하려면 ~/.vimrc에 option을 미리 지정하면 됩니다. 예를들어, 라인번호가 항상 나오게 하려면 set number 라는걸 ~/.vimrc에 넣어놓으면 됩니다. 색깔 지정하는걸 Syntax Highlighting이라 하는데 :syntax on 하여 색상이...

Continue Reading
2025년 04월 16일

bind-9.3.6 설치와 설정하기 named 구축

bind-9.3.6-4.P1.el5_4.2 설치 yum -y install bind\* 하시면 bind에 대한건 다 설치합니다.   또는 # yum -y install bind bind-libs ypbind yp-tools bind-utils bind-chroot bind-devel 하세요....

Continue Reading
2025년 04월 16일

2차네임서버 구축실무

1. /etc/named.conf options {        directory “/var/named”;}; controls {         inet 127.0.0.1 port 953  allow { localhost; } keys { rndckey; };}; zone “.” {        type...

Continue Reading
2025년 04월 16일

bind9 네임서버 소스로 설치하기

bind 소스받기 https://www.isc.org/ 상단첫번째 DOWNLOADS > BIND 에서 최신버전 tar.gz 다운로드 1. 파일 다운로드 받고 컴파일 하기  # gzip  -dc   bind-9.3.0.tar.gz  |  tar  xvf   –# cd  bind-9.3.0# ./configure  # make# make...

Continue Reading
2025년 04월 16일

rocky linux ssh 언어설정

rocky linux8 ssh 에서 한국어 언어설정입니다. # vim /etc/locale.conf LANG=”ko_KR.UTF8″ 저장후 # source /etc/locale.conf 또는 서버 reboot 설정확인하기 # localectl status System locale: LANG=ko_KR.UTF8...

Continue Reading
2025년 04월 16일

Rocky Linux 8.x 에서 Let’s encrypt 설치 및 SSL 발급받기

OS 종류 및 버전에 따라 설치방법이 조금씩 다릅니다. 본 내용은 Rocky Linux 8.x 에서 설치하는 방법을 다루었습니다. 1. 패키지 다운로드 # dnf -y install...

Continue Reading
2025년 04월 16일

무료 SSL Let’s encrypt certbot 설치하는 방법 – Linux CentOS

무료 SSL Let’s encrypt certbot 설치하는 방법 – Linux CentOS 1. 서버 설치하기 : 소스설치 ~]# cd /usr/local ~]# yum install epel-release ~]# rpm...

Continue Reading
2025년 04월 16일

mysql 5.1 to 5.7 upgrade 방법

mysql 5.1 to 5.7 upgrade 방법입니다. 우선 해 본결과 간단히 소개부터 하면 1) 중요한 데이터라면 우선 백업을 하고 이 작업을 하세요.– 데이터가 다 날라갈...

Continue Reading