Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Error during sandbox initial installation

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

Labels (3)
1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

The error was still the proxy. I was able to correctly install the software using a no proxy connection.

View solution in original post

2 Replies
Anonymous
Not applicable
Author

The error was still the proxy. I was able to correctly install the software using a no proxy connection.

harvyjackk
Contributor
Contributor

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:

 

  • hasNext()
  • hasMoreElements()