일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- error
- springbatch error
- yum install java
- 스프링부트테스트
- property or field 'jobparameters' cannot be found on object of type
- java 여러개 버전
- AWS CLI
- java 버전 변경
- JUnit
- el1008e
- Java 1.8
- Medium
- aws
- OpenFeign
- LeetCode
- java 1.8 11
- No tests found for given includes
- log error
- parse
- springboottest
- java
- maybe not public or not valid?
- java 11
- easy
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- springboot
- no sources given
- mac os git error
- querydsl no sources given
- java version
- Today
- Total
목록개발/ETC (37)
쩨이엠 개발 블로그
에러가 났다 shell-init: error retrieving current directory: getcwd: cannot access parent directories: No such file or directory Error: The current working directory doesn't exist, cannot proceed. 뭔가 길다 나는 그냥 start.sh을 실행시키고싶었을 뿐인데 읽어보니 거기 디렉토리 없는데 왜 거기서 하냐는 뜻이다 삭제한 디렉토리 안에서 sh 실행시키지 말라는 뜻이었다 나와서 쉘 돌리니 실행 된다!
node 프로젝트를 재시작했더니 갑자기 certificate has expired 가 뜨면서 application이 안뜨기 시작했다 .. 방금 로컬에서 잘 돌렸는데?? 왠인증서???? 로그가 딱 저거 하나 찍혀있어서 찾아봤는데 결국 버전문제였다 현재 쓰고 있는 버전은 8.94 8.9.4 -> certificate has expired 버전을 올렸다 9.5.0 -> certificate has expired 또 올렸다 10.21.0 -> application 실행!! 아니.. 인증서 문제라면서 버전업이 왜 되어야하는걸까 양심없는 log 였다
맨날 찾아만 보다가 드디어 정리를 하기로 했다 앞으로도 계속 쓸 것 같아섴ㅋㅋㅋㅋㅋ 1. 버전확인 $ httpd -v Server version: Apache/2.4.28 (Unix) Server built: Oct 29 2017 19:28:54 2. Status 확인 $ systemctl status httpd $ service httpd status 3. Apache Start $ systemctl start httpd $ service httpd start $ apachectl start 4. Apache Stop $ systemctl stop httpd $ service httpd stop $ apachectl stop 5. Apache Restart $ systemctl restart httpd..
서버의 정보를 노출하는 것도 해킹의 위험이 있다 그래서 보안 취약점으로 자주 걸리는 노출된 Server 정보를 숨기기로 한다 $ curl -i http://172.21.106.144:8080 HTTP/1.1 200 200 Date: Tue, 30 Jun 2020 08:51:33 GMT Server: Apache/2.4.5 (Unix) Set-Cookie: JSESSIONID=5B89ADE63BCD4E73EFD835B.Tomcat; Path=/; HttpOnly Content-Language: ko-KR Content-Length: 570 Vary: Accept-Encoding Content-Type: text/html;charset=UTF-8 curl을 날렸을 때 받는 Response에 Server 정보..

https://codebeautify.org/xmlviewer XML을 깔끔하게 보여줄 수 있다 JSON Formatter도 있음 https://jsonformatter.org/
그냥 파일은 commit을 내부에서 잘 했는데 삭제된 파일이 어딜 가도 안보인다 $ git status를 했을 때 intellij 안에서는 commit으로 가도 얘가 안보였다 $ git status On branch master Your branch is up-to-date with 'origin/master'. Changes to be committed: (use "git reset HEAD ..." to unstage) deleted: iot_back/src/main/.DS_Store deleted: iot_back/src/main/java/.DS_Store deleted: iot_back/src/main/java/com/.DS_Store deleted: iot_back/src/main/java/co..