Jump to content

mahbd

Members
  • Posts

    8
  • Joined

  • Last visited

Everything posted by mahbd

  1. I moved to google compute engine so I don't need my account here. You may delete "mahbd" account to give opportunity to someone else.
  2. Can I get new subdomain api.cplab.mahbd.heliohost.us cplab.mahbd.heliohost.us contodo.mahbd.heliohost.us Also delete mahmudul.cf domain. I don't need this anymore.
  3. Due to limitation of Django I need remote access of PostgreSQL. These information might help: username: mahbd database username: mahbd_remote database name: mahbd_api ip address: everywhere I'm on Jhonny server. Thanks.
  4. I need these three IP addresses 34.202.76.163:27017 ----> Already added52.44.84.178:2701723.23.60.54:27017
  5. After removing block this message was coming. No replica set members match selector "Primary()" I thought this is my configuration problem. So, I tried all possible solution. But none of them worked. At last I came to this post. https://stackoverflow.com/questions/40765581/pymongo-read-preferences-serverselectiontimeouterror-no-primary-available-for . According to the post replica set members uses its internal IP's. So, I guess unblocking only "34.202.76.163" causing this problem. Will you take a look. Thanks in advance.
  6. Thanks a lot for your fast response. Now it is working
  7. I'm extremely sorry for my unawareness. I was just exploring and created two accounts. Now, I read Terms of services and deleted my second account. Again I apologize for my mistake. Can you please unblock it for me again.
  8. Hi, I'm trying to run this script to check if MongoDB atlas is working with python. #!/usr/bin/python3.7 import pymongo print("Content-Type: text/html\n\n") mongoLink = "mongodb+srv://username:password@cluster0.wkb1y.mongodb.net/DjCh?retryWrites=true" try: myClient = pymongo.MongoClient(mongoLink) print(myClient.list_database_names()) except Exception as e: print(str(e)) The above script is working fine on my local mechine. I also allowed access from anywhere(0.0.0.0/0). But I'm getting this error on http://mahbd.heliohost.org/cgi-bin/test.py . cluster0-shard-00-02.wkb1y.mongodb.net:27017: [Errno 111] Connection refused,cluster0-shard-00-01.wkb1y.mongodb.net:27017: [Errno 111] Connection refused,cluster0-shard-00-00.wkb1y.mongodb.net:27017: [Errno 111] Connection refused How can I solve this?
×
×
  • Create New...