Installation stops

Technical Support
  • Hello, I am trying to install NodeBB for the tenth time. However, it always stops when at the package download.
    I also tried it on my PC, but there is the same problem.

    node -v
    v10.15.3
    npm -v
    6.4.1
    
     ./nodebb setup
    package.json not found.
    Populating package.json...
    OK
    Dependencies outdated or not yet installed.
    Installing them now...
    
    npm WARN deprecated [email protected]: This module moved to @hapi/hawk. Please make sure to switch over as this distribution is no longer supported and may contain bugs and critical security issues.
    npm WARN deprecated [email protected]: This version has been deprecated in accordance with the hapi support policy (hapi.im/support). Please upgrade to the latest version to get the best features, bug fixes, and security patches. If you are unable to upgrade at this time, paid support is available for older versions (hapi.im/commercial).
    npm WARN deprecated [email protected]: This version has been deprecated in accordance with the hapi support policy (hapi.im/support). Please upgrade to the latest version to get the best features, bug fixes, and security patches. If you are unable to upgrade at this time, paid support is available for older versions (hapi.im/commercial).
    npm WARN deprecated [email protected]: This module moved to @hapi/sntp. Please make sure to switch over as this distribution is no longer supported and may contain bugs and critical security issues.
    npm WARN deprecated [email protected]: This version has been deprecated in accordance with the hapi support policy (hapi.im/support). Please upgrade to the latest version to get the best features, bug fixes, and security patches. If you are unable to upgrade at this time, paid support is available for older versions (hapi.im/commercial).
    npm WARN tarball tarball data for jsonwebtoken@^8.4.0 (sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==) seems to be corrupted. Trying one more time.
    npm WARN tarball tarball data for [email protected] (sha1-AI4G2AlDIMNy28L47XagymyKxBk=) seems to be corrupted. Trying one more time.
    npm WARN tarball tarball data for punycode@^1.4.1 (sha1-wNWmOycYgArY4esPpSachN1BhF4=) seems to be corrupted. Trying one more time.
    [            ......] \ extract:jsonwebtoken: sill extract jsonwebtoken@^8.4.0 extracted to /var/nodebb/node_modules/.staging/jsonwebtoken-57ab3242
    
  • What OS are you installing on?


Suggested Topics


  • Install failed on Ubuntu 22.04

    Solved Technical Support
    0 Votes
    4 Posts
    117 Views

    I will say that we only test the $6 droplet (used to be 5).

  • Installation killed

    Solved Technical Support
    0 Votes
    4 Posts
    1k Views

    @darwin Awesome! Glad to hear it, 😄

  • 0 Votes
    1 Posts
    710 Views

    I hope it helps someone:

    I wanted to do this, so I landed upon this thread. I had already created nginx proxy for my domain. So I basically just added /discuss (or whatever location you want)

    server { listen 443; listen [::]:443; server_name site.com; access_log off; error_log /var/log/nginx/site.com-error.log; open_file_cache max=2000 inactive=20s; open_file_cache_valid 60s; open_file_cache_min_uses 5; open_file_cache_errors off; ###################################################################### ## SSL Configuration ## ## Only use this block if you are setting up the SSL (HTTPS) server ## definition of your site. ###################################################################### ssl on; ssl_certificate /etc/letsencrypt/live/site/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/site/privkey.pem; ssl_session_timeout 5m; ssl_protocols SSLv3 TLSv1; ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv3:+EXP; ssl_prefer_server_ciphers on; location /discuss { proxy_pass http://127.0.0.1:4567/; proxy_redirect off; proxy_set_header Host $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; } # Custom 404 error_page 404 = /404.html; }

    However, there are many other issues.

    If I specify in config.json url as site.com/forum or something, css files don't load.

    If I don't, if you click on anything, it will try to go to site.com/post/2/something instead of site.com/forum/post/2 etc.

  • Offline Installation

    Technical Support
    0 Votes
    2 Posts
    740 Views
  • 0 Votes
    3 Posts
    1k Views

    @frissdiegurke Thanks!

    Thankfully, Pichalite was able to talk me up to 0.7.3, now we're trying to get up from there.