- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
已解决:
我必须在没有 --auth 的情况下运行 docker 镜像...
$ docker run -ti --rm -p 30000:27017 -v /srv/mongo:/data/db -e MONGOD_OPTIONS='--nojournal --smallfiles --noprealloc' arkadi/mongodb /sbin/my_init -- bash -l
我需要实现一个学习记录存储(LRS),能够使用 java 或 scala 将数据保存到 cassandra 实例中。我找到了这个项目,https://github.com/Apereo-Learning-Analytics-Initiative/OpenLRW它使用 mongo 2.6 作为主要后端,并使用 java8 和 spring-boot 编写。
这看起来是一个很好的起点,我只需将 cassandra 集成为新的依赖项,构建一些连接器,但是当我第一次尝试运行时,我收到了一个异常:
Caused by: com.mongodb.MongoQueryException: Query failed with error code 13 and error message 'not authorized for query on test.tenant' on server 172.17.0.3:27017
at com.mongodb.connection.ProtocolHelper.getQueryFailureException(ProtocolHelper.java:131)
at com.mongodb.connection.QueryProtocol.execute(QueryProtocol.java:303)
at com.mongodb.connection.QueryProtocol.execute(QueryProtocol.java:54)
at com.mongodb.connection.DefaultServer$DefaultServerProtocolExecutor.execute(DefaultServer.java:159)
at com.mongodb.connection.DefaultServerConnection.executeProtocol(DefaultServerConnection.java:286)
at com.mongodb.connection.DefaultServerConnection.query(DefaultServerConnection.java:209)
at com.mongodb.operation.FindOperation$1.call(FindOperation.java:496)
at com.mongodb.operation.FindOperation$1.call(FindOperation.java:482)
at com.mongodb.operation.OperationHelper.withConnectionSource(OperationHelper.java:239)
at com.mongodb.operation.OperationHelper.withConnection(OperationHelper.java:212)
at com.mongodb.operation.FindOperation.execute(FindOperation.java:482)
at com.mongodb.operation.FindOperation.execute(FindOperation.java:79)
at com.mongodb.Mongo.execute(Mongo.java:772)
at com.mongodb.Mongo$2.execute(Mongo.java:759)
at com.mongodb.DBCollection.findOne(DBCollection.java:777)
at com.mongodb.DBCollection.findOne(DBCollection.java:747)
at com.mongodb.DBCollection.findOne(DBCollection.java:694)
at org.springframework.data.mongodb.core.MongoTemplate$FindOneCallback.doInCollection(MongoTemplate.java:2143)
at org.springframework.data.mongodb.core.MongoTemplate$FindOneCallback.doInCollection(MongoTemplate.java:2127)
at org.springframework.data.mongodb.core.MongoTemplate.executeFindOneInternal(MongoTemplate.java:1901)
... 165 more
我这样运行 mongo 实例:
$ docker run -ti --rm -p 30000:27017 -v /srv/mongo:/data/db -e MONGOD_OPTIONS='--nojournal --smallfiles --noprealloc --auth' arkadi/mongodb /sbin/my_init -- bash -l
*** Running /etc/my_init.d/00_regen_ssh_host_keys.sh...
No SSH host key available. Generating one...
Creating SSH2 RSA key; this may take some time ...
Creating SSH2 DSA key; this may take some time ...
Creating SSH2 ECDSA key; this may take some time ...
Creating SSH2 ED25519 key; this may take some time ...
invoke-rc.d: policy-rc.d denied execution of restart.
*** Running /etc/my_init.d/90_mongo-admin.sh...
*** Running /etc/rc.local...
*** Booting runit daemon...
*** Runit started as PID 95
*** Running bash -l...
note: noprealloc may hurt performance in many applications
root@4b190dded9e7:/# 2017-09-14T13:51:29.119+0000 [initandlisten] MongoDB starting : pid=103 port=27017 dbpath=/data/db 64-bit host=4b190dded9e7
2017-09-14T13:51:29.119+0000 [initandlisten] db version v2.6.7
2017-09-14T13:51:29.119+0000 [initandlisten] git version: a7d57ad27c382de82e9cb93bf983a80fd9ac9899
2017-09-14T13:51:29.119+0000 [initandlisten] build info: Linux build7.nj1.10gen.cc 2.6.32-431.3.1.el6.x86_64 #1 SMP Fri Jan 3 21:39:27 UTC 2014 x86_64 BOOST_LIB_VERSION=1_49
2017-09-14T13:51:29.119+0000 [initandlisten] allocator: tcmalloc
2017-09-14T13:51:29.119+0000 [initandlisten] options: { security: { authorization: "enabled" }, storage: { journal: { enabled: false }, preallocDataFiles: false, smallFiles: true } }
2017-09-14T13:51:29.125+0000 [initandlisten] waiting for connections on port 27017
Sep 14 13:51:29 4b190dded9e7 syslog-ng[105]: syslog-ng starting up; version='3.5.3'
root@4b190dded9e7:/# mongo
MongoDB shell version: 2.6.7
connecting to: test
2017-09-14T13:51:47.087+0000 [initandlisten] connection accepted from 127.0.0.1:47862 #1 (1 connection now open)
2017-09-14T13:51:47.087+0000 [conn1] note: no users configured in admin.system.users, allowing localhost access
Welcome to the MongoDB shell.
For interactive help, type "help".
For more comprehensive documentation, see
http://docs.mongodb.org/
...
mongo docker实例的ip是:
root@4b190dded9e7:/# ifconfig
eth0 Link encap:Ethernet HWaddr 02:42:ac:11:00:03
inet addr:**172.17.0.3** Bcast:0.0.0.0 Mask:255.255.0.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:28 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:4500 (4.5 KB) TX bytes:0 (0.0 B)
我可以从本地主机访问此 docker 实例:
$ ping 172.17.0.2
PING 172.17.0.2 (172.17.0.2) 56(84) bytes of data.
64 bytes from 172.17.0.2: icmp_seq=1 ttl=64 time=0.045 ms
64 bytes from 172.17.0.2: icmp_seq=2 ttl=64 time=0.040 ms
64 bytes from 172.17.0.2: icmp_seq=3 ttl=64 time=0.041 ms
64 bytes from 172.17.0.2: icmp_seq=4 ttl=64 time=0.044 ms
64 bytes from 172.17.0.2: icmp_seq=5 ttl=64 time=0.043 ms
这就是我实际的 application.yaml 文件的样子:
# different mongo instance running within a docker container
spring.data.mongodb.host: 172.17.0.3
spring.data.mongodb.port: 27017
server.port: 9966
spring.profiles: default
matthews.security.jwt:
tokenExpirationTime: 240 # Number of minutes
refreshTokenExpTime: 360 # Minutes
tokenIssuer: http://example.com
tokenSigningKey: changeme
endpoints:
enabled: false
info:
enabled: true
info:
build:
artifact: @project.artifactId@
name: @project.name@
description: @project.description@
version: @project.version@
matthews.users:
encrypted: false
adminuser : ${random.value}
password: ${random.value}
emailAddress: ${random.value}@unicon.net
我使用以下命令运行该项目:
`mvn clean package spring-boot:run`
看起来我必须在运行 jar 文件之前在 mongo 实例中执行其他操作,不是吗?
非常感谢。
最佳答案
您似乎正在尝试连接到使用无需用户名和密码的身份验证的 mongodb 实例。
你应该尝试:
关于java - 关于OpenLRW部署到mongo docker实例时出现异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46221443/
有没有一种方法可以使用标准类型构造函数(例如 int、set、dict、list、tuple 等)以用户定义的方式将用户定义类的实例强制转换为其中一种类型?例如 class Example:
我知道这个问题在Stackoverflow中有很多问题,但是即使有很多答案,这些答案也帮不了我什么,也没有找到答案。 在我的WebAPP中,它可以正常工作,但是当我将其转换为API时,它失败了(主题标
这个问题已经有答案了: Why does the ternary operator unexpectedly cast integers? (3 个回答) 已关闭 9 年前。 最近遇到一个Java的陷
我尝试使用 FirebaseApp.configure() 配置 Firebase,但遇到以下崩溃: *** Terminating app due to uncaught exception 'c
我有一个自连接员工实体类,其中包含与其自身相关的 id、name 和 ref 列。我想创建它的新实例并将其保存到数据库。 首先我创建了一个 Employee 类的实例并将其命名为 manager。然后
我有一个用于添加新公寓的表单,在该表单中我有一个下拉列表,用户可以在其中选择负责的人员。 显然,当您从下拉列表中选择并尝试保存公寓时,我的应用程序认为该人已被修改。它给了我下面的错误,指示我应该首先保
从 Visualforce 页面,我需要检索我们组织的 salesforce 实例的 URL,而不是 Visual Force URL。 例如我需要https://cs1.salesforce.com
我遇到了一些可能的问题答案,但这是关于从 Hibernate 3.4.0GA 升级到 Hibernate 4.1.8 的问题。所以这曾经在以前的版本下工作,我已经四处搜索了为什么它在这个新版本中出现了
似乎一遍又一遍地问这个问题,我仍然找不到解决我问题的答案。我在下面有一个域模型。每个新创建或更新的“安全用户”都需要我确保其具有配置文件,如果没有,则创建一个新的配置文件并分配给它。 配置文件的要求相
我很难调试为什么 JPA 不级联我的 @ManyToMany 关系。我发现的所有答案都与缺少级联语句有关。但我确实拥有它们并且仍然得到: Caused by: org.hibernate.Transi
Play 服务 API 表明有一个叫做 Instance ID 的东西 但是,在 Android Studio 中包含以下内容后,我无法导入 InstanceID 类 compile "com.goo
我正在使用 Seam 框架。我有 2 个实体: 请求.java @Entity @Table(name = "SRV_REQUEST") public class Request { private
This question处理构建一个适当的Monad来自单子(monad)的实例,但仅在某些约束下 - 例如Set .诀窍是将其包装成 ContT ,它将约束推迟到包装/展开其值。 现在我想对 Ap
我正在尝试执行此查询: StringBuffer sb = new StringBuffer(); sb.append("select p from PointsEntity p " + "where
我试图了解是否可以更改我的 hibernate 配置并使用单个 MySQL 实例(而不是我当前拥有的多个 MySQL 实例): 我有一个使用 hibernate 的 Java 应用程序,与 2 个模式
我有一个选项卡滑动布局,其中包括四个选项卡,每个选项卡都有自己的布局和 fragment ,在我的主要 Activity 布局中,viewpager 参与更改选项卡。特定 View (选项卡)在应用程
我看到很多帖子声称他们正在运行 MySql 的 RDS 实例,但无法连接到该实例,但我没有运行 RDS。 我使用 EC2 实例来托管我的 WordPress 博客,该博客是使用 Web 平台安装程序安
因为我在我的 ec-2 实例上的 python 虚拟环境中运行应用程序( Airflow ),并且我想在同一个 ec2 实例上的默认 python 环境中运行命令,所以我认为 ssh 到我自己的实例更
这个问题已经有答案了: How to fix the Hibernate "object references an unsaved transient instance - save the tra
例子: run APP1 .. ... run APP1 ... run APP2 如何在 APP2 中对 Vue 说我需要调用 APP1?
我是一名优秀的程序员,十分优秀!