일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- IntelliJ
- codedeploy
- aws cicd
- Python
- Spring
- redis
- java bigdecimal
- codedeploy error
- Jenkins
- Kafka
- AWS CI/CD 구축하기
- node
- SQL
- VPN
- or some instances in your deployment group are experiencing problems.
- bootstrap
- Flux
- PostgreSQL
- docker
- COALESCE
- chart.js
- aws
- 도커
- Airflow
- Spring Error
- kubeflow
- codepipeline
- codebuild
- JavaScript
- chartjs
- Today
- Total
목록전체 글 (641)
Small Asteroid Blog
자바에서 외부에 있는 파이썬 파일을 실행시키고자 한다. 자바에서 processbuilder를 사용한다. 자바 프로젝트 내부에서 파이썬 모듈을 설치해주어야 한다. @RequestMapping(value="pythonbuilder") @ResponseBody public String pythonProcessbuilder() throws IOException, InterruptedException { System.out.println("pythonbuilder "); String arg1; ProcessBuilder builder; BufferedReader br; arg1 = "D:/Users/Pycharm/Intellijpy/kor_v01.py"; builder = new ProcessBuilder("py..

konlpy 설치하는데 설치 중 생긴 오류로 보통 JPype 버전과 맞지 않아 생기는 에러이다. 먼저 JDK 를 설치해준다. apt-get update && apt-get install -y g++ default-jdk apt install openjdk-8-jdk -y && apt install -y default-jre sudo apt-get install g++ openjdk-8-jdk python-dev python3-dev pip install JPype1 # in Python 2.x pip3 install JPype1-py3# in Python 3.x pip --version 설치한 JDK 를 java_home 으로 환경변수를 설정한다. 이후 java -version 으로 자바 설정이 되어있는..

node에서 kubeadm 설치하는데 생기는 오류이다 > --discovery-token-ca-cert-hash sha256:e82e7b644537420c6ce984af79c2887230d6f7b6374393f4dfbba2cfc0160718 [preflight] Running pre-flight checks error execution phase preflight: [preflight] Some fatal errors occurred: [ERROR Swap]: running with swap on is not supported. Please disable swap [preflight] If you know what you are doing, you can make a check non-fatal with..

cpu가2개이상있어야하는데 1개만있어서 생기는 오류이다
구글에서 날짜별로 크롤링을 하고자 한다. duration에 적혀있는 날짜는 원하는 날짜로 변경해서 사용하면된다. 구글에서 날짜기준을 적을 때 1/1/2020 이러한 포맷으로 사용해야한다. 아래에 굵은 글씨 부분의 숫자를 원하는 날짜로 변경해서 사용하면 된다. "%2Ccd_min%3A1%2F1%2F2020%2Ccd_max%3A1%2F31%2F2020" //google @RequestMapping("googlejsoup") public String googlejsoup(Model model, @RequestParam String keyword){ String apiUrl; Document doc = null; ArrayList al1 = new ArrayList(); ArrayList al2 = new Ar..