본문 바로가기

분류 전체보기

C276x260.fwebp.q85 [draft] findstr 명령어 findstr 명령어테스트 환경운영체제 정보C:\Users\Administrator>systeminfo | findstr "OS"OS 이름: Microsoft Windows 10 ProOS 버전: 10.0.19045 N/A 빌드 19045OS 제조업체: Microsoft CorporationOS 구성: 독립 실행형 워크스테이션OS 빌드 종류: Multiprocessor FreeBIOS 버전: Dell Inc. A07, 2014-04-25인코딩 변경(한글 모드 -> 영어 모드)chcp 437findstr 명령어 사용 방법systeminfo | findstr.. 더보기
C276x260.fwebp.q85 [draft] ab(Apache Bench) tools ab(Apache Bench) toolsab - Apache HTTP 서버 벤치마킹 도구 ab 버전$ ab -VThis is ApacheBench, Version 2.3 Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/Licensed to The Apache Software Foundation, http://www.apache.org/ab 명령어더보기---$ ab -hUsage: ab [options] [http[s]://]hostname[:port]/pathOptions are: -n requests Number of requests to perform -c concurrency Number of mul.. 더보기
C276x260.fwebp.q85 [draft] SSH 호스트 키가 변경되었을 때 발생하는 경고 메시지를 해결하는 방법 SSH 호스트 키가 변경되었을 때 발생하는 경고 메시지를 해결하는 방법SSH 호스트 키가 변경되었을 때 발생하는 경고 메시지$ ssh-copy-id vagrant@172.17.0.3/usr/bin/ssh-copy-id: INFO: Source of key(s) to be installed: "/home/vagrant/.ssh/id_rsa.pub"/usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed/usr/bin/ssh-copy-id: ERROR: @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ER.. 더보기
C276x260.fwebp.q85 [draft] CentOS 7 Yum Repository 서버에 MariaDB Repository를 추가하는 방법 CentOS 7 Yum Repository 서버에 MariaDB Repository를 추가하는 방법테스트 환경운영체제 정보$ cat /etc/redhat-releaseCentOS Linux release 7.9.2009 (Core)MariaDB Repository 추가MariaDB Repositories : https://mariadb.org/download/?t=repo-configMariaDB Repository 설정 파일 추가(MariaDB.repo 저장소 추가)vim /etc/yum.repos.d/MariaDB.repoRepository 정보 입력이 설정 파일은 MariaDB의 공식 미러를 사용합니다.# MariaDB 10.8 CentOS repository list - created 2022-1.. 더보기
C276x260.fwebp.q85 [draft] kill 명령어 kill 명령어kill 명령어는 특정 프로세스를 종료시키는 명령어입니다. kill 명령어를 사용하면 프로세스의 ID(PID)를 지정하여 프로세스를 종료시킬 수 있습니다.kill 명령어 사용법kill [옵션] PIDkill 명령어의 옵션-s: 시그널을 지정합니다. 기본 시그널은 TERM(15)입니다.-l: 사용 가능한 시그널을 나열합니다.-KILL: 강제 종료 시그널을 보냅니다.-INT: 인터럽트 시그널을 보냅니다.-QUIT: 종료 시그널을 보냅니다.httpd 프로세스 확인ps -ef | grep httpd$ ps -ef | grep httpdroot 5620 1 0 10:39 ? 00:00:00 /app/apache/bin/httpd -k startdaemon 5621.. 더보기
C276x260.fwebp.q85 [draft] killall 명령어 killall 명령어killall 명령어는 지정된 프로세스 이름과 일치하는 모든 프로세스를 종료하는 데 사용됩니다.$ killall-bash: killall: command not foundpsmisc 패키지 설치RHEL 계열yum install -y psmiscDebian 계열apt-get install -y psmisckillall 명령어 버전 정보killall -V$ killall -Vkillall (PSmisc) 23.4Copyright (C) 1993-2021 Werner Almesberger and Craig SmallPSmisc comes with ABSOLUTELY NO WARRANTY.This is free software, and you are welcome to redistribute.. 더보기
C276x260.fwebp.q85 [draft] HP 서버 스토리지 정보 확인(raid) HP 서버 스토리지 정보 확인(raid)Smart Storage Administrator (ssacli)패키지명 : ssacli-4.21-7.0.x86_64.rpmArray Configuration Utility(acucli)패키지명 : hpssacli-2.40-13.0.x86_64.rpm패키지 설치yum install -y ssacli-4.21-7.0.x86_64.rpm컨트롤러 명령어컨트롤러 정보 확인 명령어컨트롤러의 정보 표시hpssacli ctrl all show config$ hpssacli ctrl all show configSmart Array P410i in Slot 0 (Embedded) (sn: 5001412324380123E5) Port Name: 1I Port Name: .. 더보기
C276x260.fwebp.q85 [draft] Windows 10에서 WSL 2를 사용하여 Docker Desktop을 설치하는 방법 Windows 10에서 WSL 2를 사용하여 Docker Desktop을 설치하는 방법1. 시스템 요구 사항 확인Windows 10 64-bit : 버전 1903 이상 빌드 18362 이상.WSL 2를 활성화하기 위해서는 Windows 10 May 2020 Update (버전 2004) 이상이 필요합니다.winver2. WSL 2 활성화Windows 기능 켜기/끄기를 엽니다.제어판 > 프로그램 > 프로그램 및 기능 > Windows 기능 켜기/끄기를 선택합니다.Linux용 Windows 하위 시스템과 가상 머신 플랫폼을 선택합니다.확인을 클릭하고 시스템을 재부팅합니다.WSL 2 설치Windows PowerShell을 관리자 권한으로 열고 다음 명령을 실행하여 WSL 2를 기본 버전으로 설정합니다.wsl .. 더보기