You can translate the question and the replies:

git clone issue

Hi All, We have our denodo platform node behind a proxy server and have configured the proxy in both denodo and git. We can only use the HTTPS and no SSH. I am getting an error in vdp server log- 552108 [DNI(7)-XXX.XXX.XX.XX-4] ERROR 2022-10-19T09:36:43.306 com.denodo.vcs.handler.git.GitHandler [] - https://gitlab.com/xxxx.git: cannot open git-upload-pack org.eclipse.jgit.api.errors.TransportException: https://gitlab.com/xxxx.git: cannot open git-upload-pack (stack trace) Caused by: java.net.ConnectException: Connection timed out (Connection timed out) gitlab.com The jgit library which is used seems to be quite an old version. I wonder if any one has faced this issue and how to resolve it. Regards V
user
19-10-2022 05:50:58 -0400
code

3 Answers

Hi, If I get the “*com.denodo.vcs.handler.git.GitHandler [] - https://gitlab.com/xxxx.git: cannot open git-upload-pack*” error when trying to configure VCS, I would perform the following checks: * Check whether the GIT repository is initialized? * Check if there is any mismatch in the proxy settings. * Additionally, I would check whether the **java.env.DENODO_OPTS_START** property in the **VDBConfiguration.properties** file located in <DENODO_HOME>\conf\vdp directory contains the necessary proxy parameters such as “-Dhttps.proxyHost=<host_name> -Dhttps.proxyPort=<https_default_port> -Dhttp.proxyHost=<host_name> -Dhttp.proxyPort=<https_default_port> -Dhttp.proxyUser=<login> -Dhttp.proxyPassword=<password> -Dhttps.proxyUser=<login> -Dhttps.proxyPassword=<password>”. * Check whether it is connected through a different Router that is not authorized within the network. Furthermore, I would reduce the log category of VCS to lower level to get more information and troubleshoot the issue by executing the LOG CONTROLLER Stored Procedure in the VQL shell as, > CALL LOGCONTROLLER('com.denodo.vdb.interpreter.execution.vcs','TRACE'); Once this is executed, I would check the 'vdp.log' file found under '<DENODO_HOME>\logs\vdp' folder. Then, I would revert the log level to ERROR: > CALL LOGCONTROLLER('com.denodo.vdb.interpreter.execution.vcs','ERROR'); If the issue persists and if you are a valid support user, you could create a support case on Denodo Support Site so that our team will assist you. Hope this helps!
Denodo Team
19-10-2022 09:48:00 -0400
code
Thanks Denodo team - that worked. Really appreciate the help. I donot see any documentation in VCS section which describes these proxy settings. Would you mind adding this to the documentation. Regards V
user
21-10-2022 04:18:40 -0400
Hi, I am glad that it worked! Your suggestion on adding these proxy settings is highly appreciated and will be evaluated internally. Thanks!
Denodo Team
27-10-2022 07:44:15 -0400
code
You must sign in to add an answer. If you do not have an account, you can register here