일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- php 배열제거
- 우분투 mysql 비밀번호 없이 로그인 될때
- 자바스크립트비밀번호검증
- PHP 구글 OTP 인증
- mariadb upgrade
- sha-2 root
- html pdf 변환
- javascript
- (using password: YES)" when trying to connect
- PHP 정규식 예제
- usb efi 시스템 파티션 삭제
- 파라미터 & 오류
- bootstrap modal
- 숫자 3자리(천단위) 마다 콤마 찍기
- 윈도우 mod_security2
- PHP 구글 OTP 연동
- bootstrap
- apple push notification service (apns) is changing
- mysqldump: Got error: 1045
- 아파치 웹 서버의 정보 숨기기
- httpd.conf 보안 설정
- modsecurity 설치
- mod_security2 설치
- 구글 OTP 인증
- group_concat 구분자
- php 이미지 url 검증 함수
- apache mod rewrite
- 비밀번호검증정규식
- 윈도우 환경 아파치 mod_security2 설치
- 비밀번호정규식
- Today
- Total
목록OS/Linux (31)
투덜이 개발자
svn 충돌 해결 resolve / resolved [root@tms test]# svn update Updating '.': Skipped 'form' -- Node remains in conflict Skipped 'test.php' -- Node remains in conflict At revision 55. Summary of conflicts: Skipped paths: 2 [root@tms test]# ls bootstrap Sortable test_group.php test_member.php test_user.php mail_send.php test01.php test_mail_naver.php test_user2.php ZipArchive [root@tms test]# cd .. [roo..

Subversion(SVN) 개념 및 명령어 정리 📃 SVN 개념 SVN 사용흐름 최초로 서버 소스를 checkout 한다 소스를 수정한다 commit 할 파일을 add 한다 update 를 통해서 저장소에 새로운 파일이 없는지 확인한다 update 과정에서 conflict 가 일어나면 이를 해결한다(수정후, resolve 해주어야함) commit 을 해서 저장소에 파일을 등록한다 repository(저장소) trunk branch tag 📃 SVN 명령어 정리 checkout[co] # sandbox 디렉토리에 체크아웃받음 svn checkout[co] svn://127.0.0.1/TestRepo1 # source 디렉토리에 체크아웃받음 svn checkout[co] svn://127.0.0.1/Tes..
svn 충돌 해결법 Select: (p) postpone, (df) diff-full, (e) edit, (mc) mine-conflict, (tc) theirs-conflict, (s) show all options: tc e) edit - 병합된 파일을 편집기로 열기 (df) diff-full - 병합된 파일을 보기 (r) resolved - 병합된 파일을 채택하기 (dc) display-conflict - 모든 충돌 사항을 보이기(잘 병합된 부분 제외) (mc) mine-conflict - 충돌 부분에 대하여 작업사본을 선택하기 (tc) theirs-conflict - 충돌 부분에 대하여 저장소본을 선택하기 (mf) mine-full - 충돌난 파일에 대하여 작업사본 파일을 선택하기 (tf) the..
리눅스에서 SVN 사용하기 1. 리눅스에서 SVN 설치하기 리눅스 배포판마다 다르지만 CentOS(Redhat 계열)의 경우 패키지 관리자(ex. yum, apt-get ... )를 통하여 간단하게 SVN을 설치할 수 있다. ( 패키지 관리자를 수행할 수 있는 권한이 필요함 ) [학번@linux ~]$ yum install -y subversion 그 외에 관련 의존물( NCURSES, FLEX, BISON )이 있어야만 LMC를 컴파일 할 수 있기 때문에 필수적으로 설치하여야 한다. [학번@linux ~]$ yum install -y ncurses flex bison 2. 리눅스에서 SVN 사용하기 리눅스에서 svn이 설치 되었을 경우 "svn"이라는 명령어를 통하여 모든 기능을 수행할 수 있으며, 여..
통신사별 DNS 서버 아이피 주소 ( SKT, KT, LG, GOOGLE ) SKT 기본 DNS 서버 : 219.250.36.130 보조 DNS 서버 : 210.220.163.82 KT 기본 DNS 서버 : 168.126.63.1 보조 DNS 서버 : 168.126.63.2 LG 기본 DNS 서버 : 164.124.101.2 보조 DNS 서버 : 203.248.252.2 GOOGLE 기본 DNS 서버 : 8.8.8.8 보조 DNS 서버 : 8.8.4.4

Key exchange failed. No compatible key-exchange method. The server supports these methods: curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521,diffie-hellman-group-exchange-sha256,diffie-hellman-group16-sha512,diffie-hellman-group18-sha512,diffie-hellman-group14-sha256 The following key-exchange method(s) are supported but not currently allowed..
rsync -zavh --delete /var/lib/pgsql/9.5/data/pg_log/ /home/pg_log/ https://blueyikim.tistory.com/562 [명령어] rsync 이해 데이타 마이그레이션 하면서 rsync 명령어를 자주 사용하는데, 아래와 같은 옵션으로 주용사용함. $ rsync -lrv /home1/data root@10.xx.xx.xx:/home1 --progress --log-file=./rsync_2019.log $ sshpass -p passw.. blueyikim.tistory.com