일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
31 |
- java
- [sqld] 자격증 합격
- 남궁성
- 항해99
- Your session has been terminated
- Wordpress
- 고객지원실
- AWS Certified Cloud Practitioner
- 비전공자를 위한 이해할 수 있는 IT 지식
- modern java in action
- 항해솔직후기
- 자바의정석
- 항해플러스
- 격파르타 합격후기
- 모던 자바 인 액션
- saltkey
- 항해플러스후기
- 격파르타 후기
- ARIadminer
- 객체지향의사실과오해
- Java의정석
- AWS시험
- readony
- 항해플러스백엔드
- 격파르타 장점
- Foundational
- 지하철분실
- MCP로 똑똑하게 일하는 법
- SQL개발자
- AWS
- Today
- Total
목록Develop (38)
WorkaHolic
Remove files from the working tree and from the index 작업 트리 및 색인에서 파일 제거 * 로컬 및 원격저장소 파일 삭제 git rm filename e.g. git rm index.html * 원격저장소만 파일 삭제 git rm --cached filename e.g. git rm --cached index.html - 옵션 -r : 내부값까지 삭제 (css, img, js는 디렉토리) e.g. git rm -r --cached css img js index.html - 삭제 이후, commit과 push까지 해야 github가 변경됨 e.g. git commit -m "file delete" e.g. git push origin main
1. CPClient 파일을 서버에 업로드할 때, 전송형태를 바이너리로 지정(e.g. 파일질라/설정 - 전송/FTP:파일 종류 - 기본 전송 유형 을 자동 에서 바이너리) 2. CPClient 파일 권한을 755 이상으로 설정(e.g. Linux $ chmod 755 CPClient)
Vultr 클라우드 서버에 설치된 Centos7 서버 설치* 서버스펙- Cloud Compute, Seoul, CentOS7 x64 Without SELinux, 25GB SSD(1CPU, 1024MB Memory, 1000GB Bandwidth) root 접속 후, nginx 설치yum install nginx --downloadonly --downloaddir=./로 패키지를 다운받으려고 했지만,No package nginx available.라는 오류 노출 검색해보니, Centos에는 Base 레퍼지토리가 존재하지 않음EPEL 레퍼지토리를 설치하라는 조언에 따라 설치yum install epel-release===================================================..

api.wordpress.org/secret-key/1.1/salt * 임의의 솔트값(Salt Key)이 새로고침시마다 매번 새로이 자동생성됨 - 입력하는 곳 wp-config.php define('AUTH_KEY', 'put your unique phrase here'); define('SECURE_AUTH_KEY', 'put your unique phrase here'); define('LOGGED_IN_KEY', 'put your unique phrase here'); define('NONCE_KEY', 'put your unique phrase here'); define('AUTH_SALT', 'put your unique phrase here'); define('SECURE_AUTH_SALT',..