Subcategories

  • Alles rund um Technik

    23 Topics
    29 Posts
    A
    At first you need Backup of your Database. You can do that with mongodump: mongodump --db nodebb -u nodebb -p password --gzip --archive=/root/nodebb-backup/mongodb-nodebb-`date +"%d-%m-%y"`.gz than we create a folder and copy yml to file mkdir mongodb nodebb-backup vi /root/mongodb/docker-compose.yml services: mongo: image: 'mongo:4.4' restart: unless-stopped ports: - '27017:27017' # environment: # MONGO_INITDB_ROOT_USERNAME: nodebb # MONGO_INITDB_ROOT_PASSWORD: password # MONGO_INITDB_DATABASE: nodebb volumes: - mongo-data:/data/db - /root/nodebb-backup:/root volumes: mongo-data: Then we start docker Container with your already installed docker and docker-compose file. docker-compose up -d Then we have mongo container running without authentication. We can now import the database backup you made earlier with: docker exec -ti $(docker ps -qf name=mongodb-mongo-1) mongorestore --db nodebb --gzip --archive=/root/mongodb-nodebb-02-04-25_v4-4.gz Now you can live with no authentication or you need to add root and user to the Database you need add following to mongodb docker exec -ti $(docker ps -qf name=mongodb-mongo-1) bash mongo use admin db.getSiblingDB('admin').createUser( { user:"root", pwd:"password", roles: ["root"] }) use nodebb db.createUser( { user: "nodebb2", pwd: "password", // or cleartext password roles: [ { role: "readWrite", db:"nodebb" } ] } ) exit Now you can enable authentication with enabling it in yml file services: mongo: image: 'mongo:4.4' restart: unless-stopped ports: - '27018:27017' environment: MONGO_INITDB_ROOT_USERNAME: nodebb MONGO_INITDB_ROOT_PASSWORD: password MONGO_INITDB_DATABASE: nodebb volumes: - mongo-data:/data/db - /root/nodebb-backup:/root volumes: mongo-data: Then do docker-compose up -d docker exec -ti $(docker ps -qf name=mongodb-mongo-1) bash mongo use nodebb db.auth('nodebb2','password'); If everything is working correctly you see an ok statement here. Greetings
  • Emmsche

    Pinned
    10
    1
    0 Votes
    10 Posts
    1k Views
    A
    [image: 1649606113975-img_20220314_170246.jpg]
  • Sophia

    2
    6
    0 Votes
    2 Posts
    381 Views
    A
    Saphira
  • Freddenator

    7
    1
    1 Votes
    7 Posts
    957 Views
    A
    [image: 1656046851201-img_20220624_063437.jpg]
  • Vergil

    4
    1
    1 Votes
    4 Posts
    786 Views
    A
    [image: 1653317793293-img_20220523_165449.jpg]
  • Puma und Panini

    7
    1
    0 Votes
    7 Posts
    1k Views
    A
    [image: 1646934430748-img-20220310-wa0001.jpg] [image: 1646934430485-img-20220310-wa0002.jpg] [image: 1646934430251-img-20220310-wa0003.jpg] [image: 1646934429949-img-20220310-wa0004.jpg] [image: 1646934429697-img-20220310-wa0005.jpg] [image: 1646934429413-img-20220310-wa0006.jpg] [image: 1646934429169-img-20220310-wa0007.jpg] [image: 1646934428843-img-20220310-wa0008.jpg] [image: 1646934428549-img-20220310-wa0009.jpg] [image: 1646934428254-img-20220310-wa0010.jpg] [image: 1646934427862-img-20220310-wa0011.jpg] [image: 1646934427538-img-20220310-wa0012.jpg] [image: 1646934427234-img-20220310-wa0013.jpg] [image: 1646934426892-img-20220310-wa0014.jpg] [image: 1646934426588-img-20220310-wa0015.jpg]
  • Percy

    1
    1
    0 Votes
    1 Posts
    377 Views
    No one has replied
  • Pizza

    1
    1
    0 Votes
    1 Posts
    367 Views
    No one has replied
  • Chess pro 666

    1
    1
    0 Votes
    1 Posts
    363 Views
    No one has replied
  • Bunte Socken

    1
    0 Votes
    1 Posts
    378 Views
    No one has replied
  • NWE-Lädchen

    1
    1
    0 Votes
    1 Posts
    181 Views
    No one has replied