Re: Difficult paths for Zeppelin and Nginx integration

2018-06-04 Thread Sanket Shah
Thanks Sam and Fabien for sharing the snippets. Fabien's solution didn't worked, but Sam's solution got me success. location /zeppelin/ { proxy_pass http://10.0.1.1:8080/; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host

Re: Difficult paths for Zeppelin and Nginx integration

2018-06-04 Thread Sam Nicholson
Here's the zeppelin from my currently, working, config I have changed my DNS domains to "internal" and "external" Other than that, it's really verbatim. server { listen 443 ssl http2; server_name zeppelin.external; ssl_certificate /etc/certs/fullchain.cer; ssl_

Re: Brain dead question on my part...

2018-06-04 Thread Michael Segel
Thanks Jeff, That explains why it didn’t work… :-) On Jun 4, 2018, at 6:08 PM, Jeff Zhang mailto:zjf...@gmail.com>> wrote: As the error says spark 2.2.1 is not supported in 0.7.2, and property (zeppelin.spark.enableSupportedVersionCheck) is only available in 0.8.0 (https://issues.apache.or

Re: Brain dead question on my part...

2018-06-04 Thread Jeff Zhang
As the error says spark 2.2.1 is not supported in 0.7.2, and property ( zeppelin.spark.enableSupportedVersionCheck) is only available in 0.8.0 ( https://issues.apache.org/jira/browse/ZEPPELIN-2324) so please try 0.8.0 RC4 https://dist.apache.org/repos/dist/dev/zeppelin/zeppelin-0.8.0-rc4/ There's s

Re: Difficult paths for Zeppelin and Nginx integration

2018-06-04 Thread Fabien Morcamp
Sanket, Its works for me, and I'm based on this documentation: https://zeppelin.apache.org/docs/0.7.3/security/authentication.html Like that: > location /ws { > proxy_passhttp://my_internal_ip:8080/ws; > proxy_read_timeout86400; > proxy_connect_timeout 5s; > proxy

Re: Brain dead question on my part...

2018-06-04 Thread Michael Segel
Hey Trevor! Yeah still doesn’t work. I’ll figure it out… or just go w Mapr’s stuff in containers as the path of least resistance. -Mike On Jun 4, 2018, at 11:58 AM, Trevor Grant mailto:trevor.d.gr...@gmail.com>> wrote: Yes- restart Zeppelin and make sure no instances are running. On Mon, J

Difficult paths for Zeppelin and Nginx integration

2018-06-04 Thread Sanket Shah
Am trying to put Nginx in front of Zeppelin. Regular requests are passing through, but Websockets are not working. Followed this based on guide of Zeppelin - https://zeppelin.apache.org/docs/0.7.3/security/authentication.html. Seems having a real tough luck to get this going as scratching head a

Re: Brain dead question on my part...

2018-06-04 Thread Trevor Grant
Yes- restart Zeppelin and make sure no instances are running. On Mon, Jun 4, 2018 at 11:48 AM, Michael Segel wrote: > This is a simple test that I was using to see if I could run anything… > No errors or anything just the error message… > > > > > On Jun 4, 2018, at 11:41 AM, Ruslan Dautkhanov >

Re: Brain dead question on my part...

2018-06-04 Thread Michael Segel
This is a simple test that I was using to see if I could run anything… No errors or anything just the error message… [cid:1A256034-A6E3-4386-806C-3A166EEBD376] On Jun 4, 2018, at 11:41 AM, Ruslan Dautkhanov mailto:dautkha...@gmail.com>> wrote: Can you send a screenshot with the error and comp

Re: Brain dead question on my part...

2018-06-04 Thread Ruslan Dautkhanov
Can you send a screenshot with the error and complete exception stack? -- Ruslan Dautkhanov On Mon, Jun 4, 2018 at 10:40 AM, Michael Segel wrote: > Hmmm. Still not working. > Added it to the interpreter setting and restarted the interpreter. > > The issue is that I need to use the MapR vers

Re: Brain dead question on my part...

2018-06-04 Thread Michael Segel
Hmmm. Still not working. Added it to the interpreter setting and restarted the interpreter. The issue is that I need to use the MapR version of spark since I’m running this on the cluster. Should I restart Zeppelin itself? On Jun 4, 2018, at 11:32 AM, Ruslan Dautkhanov mailto:dautkha...@gmail.

Re: Brain dead question on my part...

2018-06-04 Thread Ruslan Dautkhanov
Nope add that as a spark interpreter setting. 0.7.2 should work fine with Spark 2.2 afaik. You may want to go with Zeppelin 0.8 when you upgrade to Spark 2.3. -- Ruslan Dautkhanov On Mon, Jun 4, 2018 at 10:29 AM, Michael Segel wrote: > I’m assuming that I want to set this in ./conf/zeppelin-

Re: Brain dead question on my part...

2018-06-04 Thread Michael Segel
I’m assuming that I want to set this in ./conf/zeppelin-site.xml … Didn’t have any impact. Still getting the same error. On Jun 4, 2018, at 11:17 AM, Michael Segel mailto:msegel_had...@hotmail.com>> wrote: Hmmm…. did not know that option existed. Are there any downsides to doing this? Thx -M

Re: Brain dead question on my part...

2018-06-04 Thread Michael Segel
Hmmm…. did not know that option existed. Are there any downsides to doing this? Thx -Mike On Jun 4, 2018, at 11:10 AM, Ruslan Dautkhanov mailto:dautkha...@gmail.com>> wrote: Should you try to set zeppelin.spark.enableSupportedVersionCheck to false at spark interpreter level ? -- Ruslan D

Re: Brain dead question on my part...

2018-06-04 Thread Ruslan Dautkhanov
Should you try to set zeppelin.spark.enableSupportedVersionCheck to false at spark interpreter level ? -- Ruslan Dautkhanov On Mon, Jun 4, 2018 at 9:05 AM, Michael Segel wrote: > Hi, > > I’m trying to use Zeppelin to connect to a MapR Cluster… > > Yes, I know that MapR has their own support

Brain dead question on my part...

2018-06-04 Thread Michael Segel
Hi, I’m trying to use Zeppelin to connect to a MapR Cluster… Yes, I know that MapR has their own supported release but I also want to use the same set up to also run stand alone too… My issue is that I’m running Zeppelin 0.7.2 and when I try to connect to spark, I get the following error….