인프라/리눅스41 [CentOS7] sed 명령어 특정 문자열 아래줄 삭제 후 저장 sed -i '/^seotest/{n;d}' test $ cat test vvvvvvvvvvvvvv seotest adfadfadzvcvzcvcvz 123213123123 # 명령어 수행 sed -i '/^seotest/{n;d}' test $ cat test vvvvvvvvvvvvvv seotest 123213123123 특정 문자열 아래 문자열 추가 sed -i'' -r -e "/seotest/a\add hello world" test $ cat test vvvvvvvvvvvvvv seotest 123213123123 # 명령어 수행 sed -i'' -r -e "/seotest/a\add hello world" test $ cat test vvvvvvvvvvvvvv .. 2022. 6. 21. [Centos7] OpenLDAP 구축 AWX LDAP인증을 위한 Centos7에 OpenLDAP를 구축한다. 구축방법 ## yum 패키지 설치 yum install -y compat-openldap openldap openldap-servers openldap-clients openldap-servers-sql openldap-devel ## Open LDAP 테이터베이스 설정 cp /usr/share/openldap-servers/DB_CONFIG.example /var/lib/ldap/DB_CONFIG chown ldap. /var/lib/ldap/DB_CONFIG ## 서비스 등록 및 시작 systemctl --now enable slapd.service ## OpenLDAP 루트 사용자 비밀번호 설정 slappasswd -h {SSH.. 2022. 6. 13. [centos7] svn 구축 및 활용 cenots7에는 기본적으로 svn이 설치 되어있음 # rpm -qa | grep subversion subversion-libs-1.7.14-16.el7.x86_64 subversion-1.7.14-16.el7.x86_64 구축방법 ## svn repo폴더 설정 vi /etc/sysconfig/svnserve OPTIONS="--threads --root /svn" ## svn repo 폴더 생성 mkdir /svn ##svn 서비스 재시작 systemctl restart svnserve.service ## repo 저장소 생성(명령어 수행시 test폴더와 svn관련 폴더/파일 생성됨) svnadmin create --fs-type fsfs /svn/test ## svnserve.conf 수정([gen.. 2022. 6. 11. centos7 svn: E205007: Could not use external editor to fetch log message; consider setting the $SVN_EDITOR environment variable or using the --message (-m) or --file (-F) options 에러내역 svn commit 수행 시도시 아래와 같은 에러 발생 # svn commit hihihseo.txt svn: E205007: Commit failed (details follow): svn: E205007: Could not use external editor to fetch log message; consider setting the $SVN_EDITOR environment variable or using the --message (-m) or --file (-F) options svn: E205007: None of the environment variables SVN_EDITOR, VISUAL or EDITOR are set, and no 'editor-cmd' run-time conf.. 2022. 5. 18. centos7 jenkins 설치 공식문서를 참고하였다. 다음과 같이 그대로 설치하면 젠킨스를 설치할 수 있다. 패키지 설치 sudo wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.repo --no-check-certificate sudo rpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io.key sudo yum upgrade # Add required dependencies for the jenkins package sudo yum install java-11-openjdk sudo yum install jenkins sudo systemctl daemon-reload 서비스 등.. 2022. 5. 2. 이전 1 ··· 4 5 6 7 8 9 다음 반응형