使用docker登录zeppelin问题

时间:2017-10-11 10:05:31

标签: apache-spark docker shiro apache-zeppelin

我已经下载了许多zeppeling / spark图像,而且所有这些图片都无法登录笔记本电脑。这是容器中的shiro.ini文件:

    ...
admin = password1
user1 = password2
user2 = password3

# Sample LDAP configuration, for user Authentication, currently tested for single Realm
[main]
#ldapRealm = org.apache.shiro.realm.ldap.JndiLdapRealm
#ldapRealm.userDnTemplate = cn={0},cn=engg,ou=testdomain,dc=testdomain,dc=com
#ldapRealm.contextFactory.url = ldap://ldaphost:389
#ldapRealm.contextFactory.authenticationMechanism = SIMPLE

[urls]
# anon means the access is anonymous.
# authcBasic means Basic Auth Security
# To enfore security, comment the line below and uncomment the next one
/** = anon
#/** = authcBasic

现在我正在使用此图片:conker84 / zeppelin。当我输入admin和password1用户时,我得到了:

The username and password that you entered don't match.

我注意到通过检查铬我得到了:

api/login net::ERR_CONNECTION_REFUSED

我已经在incubator-zeppelin / logs#下检查了日志,并没有什么奇怪的,只是服务器启动。

1 个答案:

答案 0 :(得分:1)

所以问题实际上是在VirtualBox中。我在网络端口转发中设置了错误的端口配置。在主持人和访客中添加8080后,我能够登录Zeppelin。

相关问题