VultureProject / vulture3-gui

Vulture 3 Management GUI (Django project)
GNU General Public License v3.0
4 stars 5 forks source link

MongoDb don't start with full IPV6 Installation #19

Open thepnux opened 3 years ago

thepnux commented 3 years ago

Hi,

When i run mys installation on full IPV6 system, mongodb dont' start :

MongoDB restarted Failed to initialize the replica, error: server-01:9091: [Errno 61] Connection refused An error occured !

A by-pass consist to

  1. comment line of file : /var/bootstrap/configure_primary_node.py

[…] def initialize_databases(): try: redis = RedisSvc() redis.create_master_conf() redis.restart_service() logger.info("Redis configuration file successfully created") except Exception as e: error_msg = "Failed to create the Redis configuration file, error: {}".format(e) logger.error(error_msg) logger.exception(e) return False, error_msg try: "#DataBaseClient.create_mongodb_conf()" logger.info("Mongodb configuration file successfully created") […]

  1. modifiy : /usr/local/etc/mongodb.conf

[…] bindip: ::,0.0.0.0 […]

Could you analyze this problem and find a lasting solution, please ?