본문 바로가기

728x90

리눅스

CentOS 7에서 전원 버튼을 비활성화하는 방법 CentOS 7에서 전원 버튼을 비활성화하는 방법 - 시스템이 비정상적으로 종료되는 현상이 발생하였다. 테스트 환경 서버 모델 $ dmidecode -t system | egrep 'Manufacturer|Product Name' Manufacturer: HP Product Name: ProLiant DL360p Gen8 운영체제 버전 $ cat /etc/redhat-release CentOS Linux release 7.8.2003 (Core) 운영체제 아키텍처 $ uname -a Linux test-server 3.10.0-1127.18.2.el7.x86_64 #1 SMP Sun Jul 26 15:27:06 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux messages 로그(.. 더보기
[리눅스] cacti plugin 설치 cacti plugin 설치 cacti plugin 내려받기 http://cactiusers.org/ cacti002 데이타베이스 생성 $ mysqladmin create cacti002 -u root -p $ mysql -u root -p mysql mysql cacti002 GRANT ALL ON cacti002.* TO cacti002@localhost IDENTIFIED BY 'cacti1234'; mysql> flush privileges; Cacti Plugin 설치 Plugin Architecture 내려받기 http://mirror.cactiusers.org/downloads/plugins/cacti-plugin-0.8.7g-PA-v2... 더보기
[리눅스] Sendmail 및 SquirrelMail 웹메일 설치하기-1 Sendmail 및 SquirrelMail 웹메일 설치하기-1 1. Sendmail 설치 1.1. 패키지 설치 sendmail, sendmail-cf [root@mail ~]$ rpm -qa | grep sendmail sendmail-8.13.8-8.el5 [root@mail ~]$ yum -y install sendmail sendmail-cf 1.2. Sendmail 서버 환경 설정 1.2.1. sendmail.cf sendmail.mc 백업 [root@mail mail]$ pwd /etc/mail [root@mail mail]$ mv sendmail.cf sendmail.cf.org [root@mail mail]$ cp sendmail.mc sendmail.mc.org 1.2.2. sendmail.. 더보기
[리눅스] Qmail Install 메일서버 Qmail Install 메일서버 Qmail 관련 소스 다운로드 # qmail $ wget http://www.qmail.org/netqmail-1.06.tar.gz # ucspi-tcp $ wget http://cr.yp.to/ucspi-tcp/ucspi-tcp-0.88.tar.gz #daemontools $ wget http://cr.yp.to/daemontools/daemontools-0.76.tar.gz $ wget http://www.lug.or.kr/files/centos_book/qmail/qmail-date-localtime.patch $ wget http://inoa.net/qmail-tls/netqmail-1.06-tls-20110119.patch Sendmail 서비스 종료 [root.. 더보기
[draft] 개인 키를 사용하여 공개 키를 생성하는 방법 개인 키(PrivateKey)를 사용하여 공개 키(PublicKey)를 생성하는 방법1. OpenSSL 명령어를 사용하여 개인 키를 생성합니다.openssl genpkey -algorithm RSA -out private_key.pem이 명령어는 RSA 알고리즘을 사용하여 개인 키를 생성하고, private_key.pem 파일에 저장합니다. 2. 생성된 개인 키를 기반으로 공개 키를 추출합니다.openssl rsa -pubout -in private_key.pem -out public_key.pem이 명령어는 개인 키 파일에서 공개 키를 추출하고, public_key.pem 파일에 저장합니다. 3. 생성된 공개 키를 확인합니다.cat public_key.pem이 명령어는 공개 키 파일의 내용을 터미널에 .. 더보기
[draft] 리눅스에서 tcping을 설치하고 사용하는 방법 리눅스에서 tcping을 설치하고 사용하는 방법tcping 명령어는 TCP 포트에 대한 ping 테스트를 수행하는 데 사용됩니다. 이 도구는 목표 호스트와 포트에 대한 연결을 시도하고 응답 시간을 측정합니다. 일반적으로 ping 명령어가 ICMP를 사용하여 호스트의 응답을 확인하는 데 사용되지만, tcping은 TCP 연결을 테스트하는 데 사용됩니다.tcping 설치CentOSsudo yum install -y tcpingUbuntusudo apt-get install -y tcpingSnap 패키지를 사용하여 tcping을 설치snap install tcping$ snap install tcpingtcping 0.0.80 from Aibulat installedtcping 버전 정보 확인tcping -.. 더보기
[리눅스] Apache 2.0 & Tomcat 5.0 연동하기 Apache 2.0 & Tomcat 5.0 연동하기 1. apache 2.0 아파치 배포 사이트 http://www.apache.org http://www.apache-kr.org [root@cheol4 ~]$ tar xvfz httpd-2.0.52.tar.gz –C /usr/local [root@cheol4 ~]$ cd /usr/local/httpd-2.0.52 [root@cheol4 httpd-2.0.52]$ ./configure --prefix=/usr/local/apache2 [root@cheol4 httpd-2.0.52]$ make [root@cheol4 httpd-2.0.52]$ make install [root@cheol4 httpd-2.0.52]$ /usr/local/apache2/bin/.. 더보기
하드 디스크에 배드 블록의 존재 여부를 점검하기(badblocks) 하드 디스크에 배드 블록의 존재 여부를 점검하기(badblocks) badblocks 명령어는 리눅스 시스템에서 하드 디스크의 배드 블록을 검사하고 식별하는 데 사용되는 유틸리티입니다. 이 도구를 사용하여 하드 디스크의 물리적인 문제를 검출하고 데이터 손실을 방지할 수 있습니다. badblocks 명령어의 기본 구문과 주요 옵션 badblocks [옵션] [장치] [시작 블록] [끝 블록] 옵션: badblocks 명령어의 동작을 제어하기 위한 여러 옵션을 지정합니다. 장치: 검사하려는 디스크 또는 파티션의 경로를 지정합니다. 예를 들어, /dev/sda 또는 /dev/sda1과 같이 디스크 또는 파티션을 가리킵니다. 시작 블록 및 끝 블록: 검사를 시작하고 종료할 블록 범위를 지정합니다. 일반적으로 전.. 더보기

728x90