본문 바로가기

IT236

[명령어] grep grep이란? 입력으로 전달된 파일의 내용에서 특정 문자열을 찾고자 할 때 사용하는 명령어이다. 정규 표현식(Regular Expresstion)에 의한 패턴매칭(Pattern Matching)방식을 사용한다. *정규표현식 : 특정 규칙을 가진 문자열 집합을 표현하기 위한 형식 언어로, 주로 문자열 패턴 매칭을 검사하거나 또는 문자열을 치환하기 위해 사용한다. 파이프라인을 이용한 검색 grep 옵션 ex) grep -v "hello" test.txt //test.txt파일에 "hello"가 포함된 라인을 제외하고 검색 grep --hellp명령으로 옵션확인 가능 2020. 7. 2.
[명령어] 파이프라인(pipe) | 파이프라인(pipe) 파이프라인은 |(수직바) 을 기준으로 양쪽의 명령어를 연결하는 역할을 한다. an이름이 들어가는 폴더나 파일의 리스트 보기 ls - al | grep an 2020. 7. 2.
[명령어] mv mv명령어 폴더나 파일의 복사이동할 수 있도로 해주는 명령어이다. 폴더나 파일의 이름을 변경해줄 수도 있다. 이동복사 mv /usr/bin/www /desktop/ mv 현재경로 이동할경로 이름변경 mv 현재이름 변경할이름 mv www www_change 2020. 7. 2.
[리눅스] Xshell -> Centos7 접속하기 Xshell로 Centos에 접속하기 Centos7의 ip확인 su ifconfig Centos7 sshd의 포트번호 확인 netstat -tnlp Xshell 새 세션 만들기 2020. 7. 2.
[명령어] systemctl systemctl이란? RHEL 7에 도입된 systemd를 관리하는 명령어이다. /usr/lib/systemd/system 디렉토리의 .service파일을 systemctl 명령어로 서비스를 제어할 수 있다. Centos systemctl 과 service 명령어 차이점 service httpd start vs systemctl start httpd 같은 동작을 수행한다 하지만 CentOS6버전 이하에서 service구문으로 사용한다. 이상은 systemctl systemctl 옵션 서비스명.service (.service는 생략가능) 기존 명령어와 비교 표 service systemctl 설명 service name start systemctl start name.service 서비스 시작 servi.. 2020. 7. 2.
[에러] Peer's Certificate has expired git clocn https://주소 Peer's Certificate has expired 에러 해결 방법 1. 모든 저장소에 대해 인증서 확이 건너뛰기 git config --global http.sslverify 2. 타임서버와 시간 동기화 #yum -y install rdate #rdate -s zero.bora.net #date && clock -r && clock -w 2020. 7. 1.
[리눅스] 패키지 및 파이썬 모듈 설치 1. yum 그룹 패키지 설치 yum group install "Development Tools" 2. RHEL7 설치 rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm www.lesstif.com/system-admin/rhel-centos-5-6-7-epel-remi-webtatic-repository-6979743.html#RHEL/CentOS5,6,7%EC%97%90EPEL%EA%B3%BCRemi/WebTaticRepository%EC%84%A4%EC%B9%98%ED%95%98%EA%B8%B0-CentOS7/RHEL7 3. nettools설치 sudo yum install net-tools -y 4. py.. 2020. 7. 1.
[에러] Cannot find a valid baseurl for repo: base/7/x86_64 Cannot find a valid baseurl for repo: base/7/x86_64 해결하기 [root@localhost user]# yum group install "Development Tools" Loaded plugins: fastestmirror, langpacks There is no installed groups file. Maybe run: yum groups mark convert (see man yum) One of the configured repositories failed (Unknown), and yum doesn't have enough cached data to continue. At this point the only safe thing yum can do is f.. 2020. 7. 1.
[AWS] #5 웹 애블리케이션 개발 + Django - RDS(관계형 데이터베이스) RDS(관계형 데이터베이스) 1. DB 인스턴스 생성하기 데이터베이스 생성 및 설정 엔진 및 탬플릿(프리티어) 설정 나머지는 기본값으로 생성한다. 2. 인스턴스 요약정보 대시보드로 들어가서 각 현황을 한페이지에서 확인 할 수 있음 3. RDS 파라미터 그룹 그룹은 크게 서브넷, 파라미터 옵션 그룹으로 구분된다. 파라미터 생성 후 DB인스턴스를 선택하고 수정하여 파라미터 변경이 가능하다. 4. MySQL연결하기 MySQL Workbench다운로드 *서비스 및 인스턴스는 사용하지 않으면 중지 및 삭제 한다. (과금발생방지) 2020. 7. 1.
LIST