분류 전체보기621 iptable 명령어 docker host의 iptables 확인하기 iptables -t nat -L -n 2021. 11. 3. [Gitlab] gitlab runner 생성하기 gitlab Runner를 사용해 빌드 및 배포를 진행하려 했다. gitlab Runner 설치 및 다운로드 설치 메뉴얼 (공식홈페이지) https://docs.gitlab.com/runner/install/linux-manually.html #download sudo curl -L --output /usr/local/bin/gitlab-runner "https://gitlab-runner-downloads.s3.amazonaws.com/latest/binaries/gitlab-runner-linux-amd64" #실행권한부여 sudo chmod +x /usr/local/bin/gitlab-runner #gitlabrunner로 실행 sudo useradd --comment 'GitLab Runner' .. 2021. 11. 2. [docker] 도커 방화벽 문제 docker0: iptables: No chain/target/match by that name. 방화벽을 다시 설치하신 것 같았다. 방화벽 쪽을 건드리니 사용하던 db와 docker 등이 접속이 안되고 있었다. 도커로 주피터를 올려서 사용하고 있었는데 주피터가 접속이 안되서 도커를 껏다 키려고 했는데 다음과 같은 에러가 나왔다. docker0: iptables: No chain/target/match by that name. docker 를 사용하는 도중 방화벽을 잘못 건드리면 생기는 에러이다. 아래 명령어를 실행 후 도커를 다시 실행해주니 접속이 되었다. sudo iptables -t filter -F sudo iptables -t filter -X systemctl restart docker 위의 방법으로 되지 않으면 아래 방법을 사용한다. Docker 를 실행하면 iptables 에 Docke.. 2021. 11. 1. application.properties 에 html 폴더 구성 가능하게 하기 gradle 에 추가하기 implementation 'org.springframework.boot:spring-boot-starter-thymeleaf' #템플릿 시작 위치 참조 spring.thymeleaf.prefix=classpath:templates/ #템플릿의 확장자 이름 참조 spring.thymeleaf.suffix=.html #해당위치에 파일이 있는지 없는지 체크 spring.thymeleaf.check-template-location=true #캐시를 남기지 않는다. spring.thymeleaf.cache=false gradle 에 추가하기 developmentOnly 'org.springframework.boot:spring-boot-devtools' #새로고침으로 바로 반영 가능 s.. 2021. 11. 1. [jquery] select 선택에 따라 두번째 select 변경하기 첫번째 select 선택시 두번째 select 내용 변경하기 첫번째 select 선택에 따라 두번째 select 내용이 변경됨을 확인할 수 있다. 2021. 10. 29. [python] TypeError: Object of type 'complex' is not JSON serializable pyLDAvis.display() 사용중 LDA 결과 내용을 보여주려했는데 다음과 같은 타입에러가 났다. TypeError: Object of type 'complex' is not JSON serializable 내가사용한 LDA display 코드 import pyLDAvis.gensim topicData = pyLDAvis.gensim.prepare(ldamodel, docTermMatrix, dictionary) pyLDAvis.display(topicData) prepare 부분 뒤에 mds 를 지정하면 display가 된다. pyLDAvis.gensim.prepare(ldamodel, docTermMatrix, dictionary, mds='mmds') 결과 2021. 10. 29. 이전 1 ··· 52 53 54 55 56 57 58 ··· 104 다음