Package domain, role, and user in sitecore

I am new to sitecore.

I have a question regarding domain packaging and roles in sitecore (we use sitecore 6.3.1).

I pack the contents from our developer window onto the stage, and I would like to transfer the domain, roles and user created on dev in the stage.

The package designer displays the Security Accounts button. I added a specific user \, which belongs to a specific domain and role.

When installing the package on the scene site, it displays the error message "blah domain not found, cannot create user".

So the question is, do I have to create the domain manually on the scene server before I install the user? or is there a way I can copy the domain and roles to create a user?

Help evaluate.

+4
source share
3 answers

If your target solution does not have the domain in which the user lives, you will have to manually create it. However, roles can be transferred through the package in the same way as users. If user A is in role B and you are not adding role B to the package, there should be no error - just user A will not be a member of role B in the target environment.

+4
source

I found that the domains are stored in / App _Config / Security / Domains.config, and you can migrate between installations by simply copying or editing this file.

Or you can create domains manually using the Security Domains tool.

In any case, the domain must exist before you can install the package with users or roles.

+5
source

I would think that the answer that Yang answers will work with domains.

But you may need to have Domains in the package that you install first, or have it as the first "part" of your package, so it is installed first.

0
source

All Articles