簡體   English   中英

MongoDB Atlas 和 AWS 之間的連接出現超時錯誤?

[英]Connection between MongoDB Atlas and AWS giving timeout error?

我是 AWS 的新手,所以對於任何新手問題我深表歉意。

我正在嘗試將 MongoDB Atlas M0 集群與我們的 AWS EC2 實例連接起來,該實例正在運行 nodejs / react 堆棧。 問題是我無法連接這兩個實例 - AWS 和 MongoDB。 當嘗試在 function(我們的 nodejs api)中使用后端登錄時,它只是給出了這個錯誤:

Operation `user_profile.findOne()` buffering timed out after 10000ms

這是我們的索引/連接:

import config from './config';
import app from './app';
import { connect } from 'mongoose'; // MongoDB
import { ServerApiVersion } from 'mongodb';

import https from 'https';
import AWS from 'aws-sdk';

const makeLogger = (bucket: string) => {
    const s3 = new AWS.S3({
        accessKeyId: <ACCESS_KEY_ID>,
        secretAccessKey: <SECRET_ACCESS_KEY>
    });
    return (logData: any, filename: string) => {
        s3.upload({
            Bucket: bucket, // pass your bucket name
            Key: filename, // file will be saved as testBucket/contacts.csv
            Body: JSON.stringify(logData, null, 2)
        }, function (s3Err: any, data: any) {
            if (s3Err) throw s3Err
            console.log(`File uploaded successfully at ${data.Location}`)
        });
        console.log(`log (${filename}): ${logData}`);
    };
};
const log = makeLogger('xxx-xxxx');
log(config.MONGO_DB_ADDRESS, 'mongo_db_address.txt');

const credentials = <CREDENTIALS>

connect(config.MONGO_DB_ADDRESS, {
    sslKey: credentials,
    sslCert: credentials,
    serverApi: ServerApiVersion.v1
}) //, { useNewUrlParser: true })
.then(() => console.log('Connected to MongoDB'))
.catch((err) => console.error('Failed connection to MongoDB', err));

app.on('error', error => {
    console.error('app error: ' + error);
});

app.listen(config.WEB_PORT, () => {
    console.log(`Example app listening on port ${config.WEB_PORT}`);
});

給出超時錯誤的端點之一:

 router.post('/signin', async (req, res) => {

        var form_validation = signin_schema.validate({
            email: req.body.email,
            password: req.body.password,
        });

        if (form_validation.error) {
            console.log('form validation sent');
            //return res.status(400).send(form_validation);
            return res.status(400).send({
                kind: 'ERROR',
                message: 'Sorry - something didn\'t go well. Please try again.'
            });
        }

        var User = model('model', UserSchema, 'user_profile');

        User.findOne({ email: req.body.email }, (err: any, the_user: any) => {
            if (err) {
                return res.status(400).send({
                    kind: 'ERROR',
                    message: err.message
                });
            }

            if (!the_user) {
                return res.status(400).send({
                    kind: 'ERROR',
                    message: 'the_user undefined',
                });
            }

            compare(req.body.password, the_user.password)
                .then((result) => {

                    if (result == true) {

                        const user_payload = { name: the_user.name, email: the_user.email };
                        const access_token = sign(user_payload, config.SECRET_TOKEN);

                        res.cookie('authorization', access_token, {
                            httpOnly: true,
                            secure: false,
                            maxAge: 3600000,
                        });

                        return res.send({ kind: "LOADING" });
                        // return res.send(access_token);

                    } else {

                        return res.status(400).send({
                            kind: 'ERROR',
                            message: 'Sorry - wrong password or email used.'
                        });

                    }

                })

        })
    });

奇怪的是,當運行我們的前端時,我可以從我的本地開發機器連接。 正如我可以從 wsl2 ubuntu cli 連接一樣。

在 Mongo 方面,我已將所有可能的 ip 地址列入白名單。 在 AWS 端,我已經創建了所需的出站安全組策略。 關於inbound,我覺得是對的。 我已允許訪問端口 27000 - 28018。

再次 - 我是 AWS 的新手,所以如果有人能告訴我它是什么我在這里根本不理解,我將非常感激

謝謝

open mongodb atlas Network Access open 0.0.0.0/0 (包括你現在的IP地址)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM