Migrating to NodeBB - good stuff
-
@bentael I think the database is already in the state you are trying to get me to put it in:
redis> hgetall group:gid
- "registered-users"
- "1"
- "administrators"
- "2"
redis> smembers gid:2:members
- "1"
redis> hget user:1 username
"admin"redis>
The user "admin" (uid:1) is already in the gid:2:members set (which is the "administrators" group).
Are we sure the latest version didn't change the way privileges are allocated?
@psychobunny -
@medwards your data looks correct, so you have 1 admin only, If you use the
--flush
flag with import, it WILL create the firstadmin
user asadmin:password
because it is required by the NodeBB setup, basically just callingnode app --setup="{ escaped JSON goes here}"
to make sure you have the right DB schema, here are the default values. https://github.com/akhoury/nodebb-plugin-import/blob/master/lib/import.js#L79
###tl;dr
no matter if you have admins or in the imported DATA, the import WILL create the first admin for you, and tries to make YOUR imported-admins admins, -
that's why your first user with id 1 has id 2, so .. all ids are incremented by one.
One way to avoid this is to set your main admin as the default Admin in the config.setupVal values, and delete its _uid.1 file. this way, it will be the one to be imported as the main admin, and all of its posts will be owned by that same one. -
@bentael Sorry for the delayed reply.
I understand everything you said, but I don't think that is my problem. I am using the "admin" user that is uid:1.
After digging into the code I was able to figure this out. It looks like the group that grants admin access has changed from "administrators" to "Administrators" which is case sensitive. I was able to solve my problem with
hset group:gid Administrators 2
I based this on line 752 in user.js
groups.getGidFromName('Administrators', function(err, gid) {
which sort of just creates another name for the same group... I think. Not sure if this would work throughout the codebase or not.
-
I see what you mean in the commit log. Based on this:
@julian said:
@bentael @medwards For the most part, we're limiting refactors to minor version bumps, and as the next version is 0.3.1, you should be fine if @bentael fixes up the importer for edge, even if 0.3.1 isn't released by then.
I was running the data import using the version he specified, but then launching the web app with v0.3.0 expecting them to be data compatible. I'll have to upgrade the code I'm using to launch the web server - my mistake.
-
@medwards yea, you will need to use the version I specified for both import and run, but then after you can just
./nodebb upgrade
to be on the latest.
as soon as 0.3.1 is out, I will stablize the importer again, and with every minor release for here on (0.4.0, 0.5.0 etc..) -
sweet .
-
@medwards said:
@bentael Just a few (business) days late:
https://github.com/MakerStudios/nodebb-plugin-vbexporter
I'll ask about renaming it now that I've looked a little closer and understand your naming convention.
sweet - how exactly does one use the vbexporter ?
-
@eva2000 this exporter hits the VB databases, gets all the relevant data, then writes them all on the file system in some
storage
directory in a structure that this nodebb-plugin-import can understand then import to the NodeBB database. .. basically a two step import technique.