소개
게시글
질문&답변
2022.10.28
안녕하세요!! connector 실행시 오류가 생겨 질문 드립니다.
윈도우10, Open JDK8 버전 환경에서 confluent-community-6.1.0.tar,gz 파일로 Kafka Connect 실습 중에 저도 동일한 문제가 발생했고 해결한 내용 정리해 보았습니다참고하세요~ Could not find or load main class org.apache.kafka.connect.cli.ConnectDistributedkafka-run-class.bat 파일에 아래 내용 추가rem Classpath addition for LSB style path if exist %BASE_DIR%\share\java\kafka\* ( call :concat %BASE_DIR%\share\java\kafka\* )log4j:ERROR Could not read configuration file from URLconnect-distributed.bat 파일에서 connect-log4j.properties 경로 수정rem Log4j settings IF ["%KAFKA_LOG4J_OPTS%"] EQU [""] ( set KAFKA_LOG4J_OPTS=-Dlog4j.configuration=file:%BASE_DIR%/etc/kafka/connect-log4j.properties ) org.reflections.ReflectionsException: could not get type for name kotlin.jvm.internal.FunctionReference다양하게 해결해 보려고 노력했지만 결국 최신 버전 파일( confluent-community-7.2.0.tar.gz)을 사용하여 해결했습니다.
- 1
- 2
- 859
질문&답변
2019.11.07
layouts 폴더 밑에 서브 폴더 사용이 가능할까요??
답변 감사합니다~ 좀 지켜봐야 겠네요^^
- 0
- 3
- 299
질문&답변
2019.11.07
npm run lint 실행시 오류 발생합니다 babel이랑 안맞나본데요ㅠ
저는 package.json 파일에서 lint 스크립트 수정해서 해결했습니다. 혹시 도움이 되실까해서 남깁니다~ { ... "scripts": { "dev": "nuxt", "lint": "eslint --ext .js,.vue ." }, ... "devDependencies": { "eslint": "^6.6.0", "eslint-plugin-vue": "^6.0.0" }, "dependencies": { "@nuxtjs/axios": "^5.8.0", "@nuxtjs/vuetify": "^1.9.0", "nuxt": "^2.10.2", "vue": "^2.6.10", "vuetify": "^2.1.7" } }
- 0
- 19
- 4.4K