As others have mentioned, you'll need to reset the owner of all files in the NodeBB folder.
Keep in mind if any files are owned by root, you need to be the root user to change ownership!
So that said:
$ su # to get to root
$ cd /path/to/nodebb
$ ./nodebb stop
$ chown -R ali:ali . # change ownership to the "ali" user, for the current directory and all files/directories inside of it
$ logout # To get back to the regular unprivileged user
Change ali as necessary.