Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello everyone,
I downloaded the Talend big data 6.3 sandbox but on the first start it launch an error during the components's installation.(pic attached)
My first tought was proxy, so i set it (both on ubuntu network settings and in bashrc) and restarted the virtual machine but nothing changed.
Log reports:
----------------------
!MESSAGE FrameworkEvent ERROR
!STACK 0
org.osgi.framework.BundleException: Exception in org.talend.configurator.Activator.start() of bundle org.talend.configurator.
at org.eclipse.osgi.internal.framework.BundleContextImpl.startActivator(BundleContextImpl.java:792)
...
Caused by: java.util.NoSuchElementException
at java.util.Scanner.throwFor(Scanner.java:862)
...
and more errors....
-----------------------
Any clues?
Thank you
The error was still the proxy. I was able to correctly install the software using a no proxy connection.
The error was still the proxy. I was able to correctly install the software using a no proxy connection.
The NoSuchElementException in Java is thrown when one tries to access an iterable beyond its maximum limit. This means that, this exception is thrown by various accessor methods to indicate that the element being requested does not exist. The next() method in Java returns the next element in the iteration or NoSuchElementException if the iteration has no more elements. The solution to this exception is to check whether the next position of an iterable is filled or empty . The following methods are used to check the next position: