Number of guests on scaled installs

Technical Support

Suggested Topics


  • 0 Votes
    3 Posts
    654 Views

    @baris only get this
    Aug 28 16:39:27 hostname mongod[7590]: 2018-08-28T16:39:27.604+0800 I CONTROL [main] Automatically disabling TLS 1.0, to force-enable TLS 1.0 specify --sslDisabledProtocols 'none'

    # free -m total used free shared buff/cache available Mem: 1735 1296 102 3 336 231 Swap: 1019 287 731 #/etc/mongod.conf storage: dbPath: /var/lib/mongodb journal: enabled: true systemLog: destination: file logAppend: true path: /var/log/mongodb/mongod.log net: port: 27017 bindIp: 127.0.0.1 processManagement: timeZoneInfo: /usr/share/zoneinfo security: authorization: enabled
  • 0 Votes
    4 Posts
    875 Views

    @hoang6 go in to your nodebb folder, the logs are inside the logs folder, open output.log and paste the last 20-30 lines which should show the crash.

  • 0 Votes
    9 Posts
    4k Views

    @Bri Yes I did. I follow this guide to install nodebb:

    https://nodebb.readthedocs.io/en/latest/installing/os/centos.html

    I installed node 7.0.0

  • 0 Votes
    2 Posts
    1k Views

    Possibly related to this admin option:

    Selection_057.png

  • 0 Votes
    34 Posts
    19k Views

    @Violing

    I was able to make it work with /forum; no ^~ required. Given what @yariplus stated this seems relevant.
    My conf:

    location /forum/ { proxy_pass http://172.17.2.3:4567; proxy_redirect off; proxy_set_header Host $http_host; proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Forwarded-Server $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-NginX-Proxy true; # Socket.IO Support proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; }

    Indented lines are ones that I copied from my other blocks that weren't present in the suggested.