解析服务器混淆了配置

发布于 2025-01-09 20:12:39 字数 1146 浏览 1 评论 0原文

我正在使用多个应用程序,这些应用程序具有托管在我的 AWS EC2 服务器上的相同解析服务器。两个应用程序混合在一起。让我用一个例子来解释一下:

我有 app1 和 db1 mongodb、user1 mongodb 用户、master1 主密钥和 app1 appId。 我有 app2 和 db2 mongodb、user2 mongodb 用户、master2 主密钥和 app2 appId。 两者都有自己的云代码。

当我尝试使用 app2 的云代码创建对象并创建对象时,云代码会在 app1 的 db1 处创建该对象。

我尝试删除 db2 和 user2 并使用新的 appId、新的主密钥和密码重新创建它们。但一切都没有改变。

这是 server.js 配置的一部分:

var app = express();
var mountPath = '/parse';

var api1 = new ParseServer({
  databaseURI: 'mongodb://app1:pass1@localhost:27017/app1',
  appId      : 'appId1',
  masterKey  : 'master1',
  serverURL  : 'http://127.0.0.1:1337/parse',
  publicServerURL: 'https://my.company.com/parse',
  cloud: './cloud/app1/main.js',
  allowClientClassCreation: false,
});
app.use(mountPath, api1);

var api2 = new ParseServer({
  databaseURI: 'mongodb://app2:pass2@localhost:27017/app2',
  appId      : 'appId2',
  masterKey  : 'master2',
  serverURL  : 'http://127.0.0.1:1337/parse',
  publicServerURL: 'https://my.company.com/parse',
  cloud: './cloud/app2/main.js',
  allowClientClassCreation: false,
});
app.use(mountPath, api2);

出了什么问题,如何解决这个问题? 谢谢

I am using several app's with same parse server hosted on my AWS EC2 server. And two apps mixed up. Let me explain with an example:

I have app1 with db1 mongodb, user1 mongodb user, master1 master key, and app1 appId.
And I have app2 with db2 mongodb, user2 mongodb user, master2 master key, and app2 appId.
Both have their own cloud code.

When I try to create an object from app2 with its cloud code and create an object, cloud code creates this object at app1's db1.

I tried to delete db2 and user2 and re-create them with new appId, new master key and password. But nothing is changed.

This is a part of server.js configuration:

var app = express();
var mountPath = '/parse';

var api1 = new ParseServer({
  databaseURI: 'mongodb://app1:pass1@localhost:27017/app1',
  appId      : 'appId1',
  masterKey  : 'master1',
  serverURL  : 'http://127.0.0.1:1337/parse',
  publicServerURL: 'https://my.company.com/parse',
  cloud: './cloud/app1/main.js',
  allowClientClassCreation: false,
});
app.use(mountPath, api1);

var api2 = new ParseServer({
  databaseURI: 'mongodb://app2:pass2@localhost:27017/app2',
  appId      : 'appId2',
  masterKey  : 'master2',
  serverURL  : 'http://127.0.0.1:1337/parse',
  publicServerURL: 'https://my.company.com/parse',
  cloud: './cloud/app2/main.js',
  allowClientClassCreation: false,
});
app.use(mountPath, api2);

What is wrong and how can I get rid of this problem?
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

庆幸我还是我 2025-01-16 20:12:39

我假设在您的云代码中您正在使用 Parse JS SDK 来查询服务器。 JS SDK 的问题在于它使用全局变量和单个 Parse 实例,基本上您可以使用应用程序 ID 和服务器 URL 对其进行初始化。每当您使用应用程序 ID 调用 Parse.initialize(...) 时,以下查询将在请求中使用该应用程序 ID。也许您可以在每次查询之前重新初始化,但这可能不是一个好主意,因为它很容易出错,而且时间甚至可能会破坏它。最好按照评论中的建议在不同的进程中运行解析服务器实例。

另请参阅有关它的讨论: https://github.com/parse -community/Parse-SDK-JS/issues/203

I assume that in your cloud code you are using the Parse JS SDK to query the servers. The problem with the JS SDK is that it uses globals and a single Parse instance basically which you initialize somewhere with the application ID and server URL. Whenever you call Parse.initialize(...) with an application ID, the following queries will use that application ID in the requests. Maybe you could reinitialize before every query but that's probably not a good idea as it is error prone and timing might even break this nonetheless. Better to run the parse server instances in different processes as suggested in the comments.

See also this discussion about it: https://github.com/parse-community/Parse-SDK-JS/issues/203

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文