How would I Add Two “AD” Groups in 1 LDAP Server
I have installed and configured a subversion
in Linux7
and from the front end I am using svn tortoise
. From server lever, I want to integrate my subversion
with AD
.
I have two repositories inside /u01/ciroot/subversion
, like DEV_REPO
and PROD_REPO
.
Also in AD
I have two groups; one is OBIEE_DEV
and another is OBIEE_PROD
. Now I want members of group OBIEE_DEV
to access the repository DEV_REPO
and members of group OBIEE_PROD
to access the repository DEV_REPO
and PROD_REPO
(both). So in my AD
, under group OBIEE_DEV
, I have user1
and user2
both there, but in the AD
group OBIEE_PROD
I only have user2
.
These things are placed properly. But in /etc/httpd/conf.d/subversion.conf
file how should I declare this? Below is my subversion.conf file where right now only one group entry is mentioned which is OBIEE_DEV, i want to add entry for group OBIEE_PROD too here. Please guide me how to achieve this.
<pre>
<location /svn>
DAV svn
SVNParentPath /u01/ciroot/subversion
AuthType Basic
AuthBasicProvider ldap
AuthName "Root Repo"
AuthLDAPURL "ldap://ldap.server.com:389/DC=macgroup,DC=local?sAMAccountName?sub?(&(ObjectClass=*)(memberOf=CN=OBIEE_DEV,OU=OBIEE,OU=Security,OU=Groups,OU=Global Resources,DC=MACGROUP,DC=LOCAL))" STARTTLS
AuthLDAPBindDN "CN=oidkerbt,OU=Service Accounts,OU=Users,OU=Global
Resources,DC=macgroup,DC=local"
AuthLDAPBindPassword password_of_ldap_server
Require valid-user
</location>
</pre>
authentication svn active-directory ldap authorization
add a comment |
I have installed and configured a subversion
in Linux7
and from the front end I am using svn tortoise
. From server lever, I want to integrate my subversion
with AD
.
I have two repositories inside /u01/ciroot/subversion
, like DEV_REPO
and PROD_REPO
.
Also in AD
I have two groups; one is OBIEE_DEV
and another is OBIEE_PROD
. Now I want members of group OBIEE_DEV
to access the repository DEV_REPO
and members of group OBIEE_PROD
to access the repository DEV_REPO
and PROD_REPO
(both). So in my AD
, under group OBIEE_DEV
, I have user1
and user2
both there, but in the AD
group OBIEE_PROD
I only have user2
.
These things are placed properly. But in /etc/httpd/conf.d/subversion.conf
file how should I declare this? Below is my subversion.conf file where right now only one group entry is mentioned which is OBIEE_DEV, i want to add entry for group OBIEE_PROD too here. Please guide me how to achieve this.
<pre>
<location /svn>
DAV svn
SVNParentPath /u01/ciroot/subversion
AuthType Basic
AuthBasicProvider ldap
AuthName "Root Repo"
AuthLDAPURL "ldap://ldap.server.com:389/DC=macgroup,DC=local?sAMAccountName?sub?(&(ObjectClass=*)(memberOf=CN=OBIEE_DEV,OU=OBIEE,OU=Security,OU=Groups,OU=Global Resources,DC=MACGROUP,DC=LOCAL))" STARTTLS
AuthLDAPBindDN "CN=oidkerbt,OU=Service Accounts,OU=Users,OU=Global
Resources,DC=macgroup,DC=local"
AuthLDAPBindPassword password_of_ldap_server
Require valid-user
</location>
</pre>
authentication svn active-directory ldap authorization
1
I'd say you have to instead create two distinct<location>
entries — matching the pathnames of your logical repos under/u01/ciroot/subversion
– kostix
Nov 13 '18 at 10:36
JFTR there's not such thing as "Linux7". Linux is an operating system kernel, not an OS. Judging from the number 7, you might have wanted to refer to CentOS or RHEL, but I'm just guessing.
– kostix
Nov 13 '18 at 10:48
add a comment |
I have installed and configured a subversion
in Linux7
and from the front end I am using svn tortoise
. From server lever, I want to integrate my subversion
with AD
.
I have two repositories inside /u01/ciroot/subversion
, like DEV_REPO
and PROD_REPO
.
Also in AD
I have two groups; one is OBIEE_DEV
and another is OBIEE_PROD
. Now I want members of group OBIEE_DEV
to access the repository DEV_REPO
and members of group OBIEE_PROD
to access the repository DEV_REPO
and PROD_REPO
(both). So in my AD
, under group OBIEE_DEV
, I have user1
and user2
both there, but in the AD
group OBIEE_PROD
I only have user2
.
These things are placed properly. But in /etc/httpd/conf.d/subversion.conf
file how should I declare this? Below is my subversion.conf file where right now only one group entry is mentioned which is OBIEE_DEV, i want to add entry for group OBIEE_PROD too here. Please guide me how to achieve this.
<pre>
<location /svn>
DAV svn
SVNParentPath /u01/ciroot/subversion
AuthType Basic
AuthBasicProvider ldap
AuthName "Root Repo"
AuthLDAPURL "ldap://ldap.server.com:389/DC=macgroup,DC=local?sAMAccountName?sub?(&(ObjectClass=*)(memberOf=CN=OBIEE_DEV,OU=OBIEE,OU=Security,OU=Groups,OU=Global Resources,DC=MACGROUP,DC=LOCAL))" STARTTLS
AuthLDAPBindDN "CN=oidkerbt,OU=Service Accounts,OU=Users,OU=Global
Resources,DC=macgroup,DC=local"
AuthLDAPBindPassword password_of_ldap_server
Require valid-user
</location>
</pre>
authentication svn active-directory ldap authorization
I have installed and configured a subversion
in Linux7
and from the front end I am using svn tortoise
. From server lever, I want to integrate my subversion
with AD
.
I have two repositories inside /u01/ciroot/subversion
, like DEV_REPO
and PROD_REPO
.
Also in AD
I have two groups; one is OBIEE_DEV
and another is OBIEE_PROD
. Now I want members of group OBIEE_DEV
to access the repository DEV_REPO
and members of group OBIEE_PROD
to access the repository DEV_REPO
and PROD_REPO
(both). So in my AD
, under group OBIEE_DEV
, I have user1
and user2
both there, but in the AD
group OBIEE_PROD
I only have user2
.
These things are placed properly. But in /etc/httpd/conf.d/subversion.conf
file how should I declare this? Below is my subversion.conf file where right now only one group entry is mentioned which is OBIEE_DEV, i want to add entry for group OBIEE_PROD too here. Please guide me how to achieve this.
<pre>
<location /svn>
DAV svn
SVNParentPath /u01/ciroot/subversion
AuthType Basic
AuthBasicProvider ldap
AuthName "Root Repo"
AuthLDAPURL "ldap://ldap.server.com:389/DC=macgroup,DC=local?sAMAccountName?sub?(&(ObjectClass=*)(memberOf=CN=OBIEE_DEV,OU=OBIEE,OU=Security,OU=Groups,OU=Global Resources,DC=MACGROUP,DC=LOCAL))" STARTTLS
AuthLDAPBindDN "CN=oidkerbt,OU=Service Accounts,OU=Users,OU=Global
Resources,DC=macgroup,DC=local"
AuthLDAPBindPassword password_of_ldap_server
Require valid-user
</location>
</pre>
authentication svn active-directory ldap authorization
authentication svn active-directory ldap authorization
edited Nov 13 '18 at 10:01
Amit Prasad
asked Nov 13 '18 at 8:35
Amit PrasadAmit Prasad
13
13
1
I'd say you have to instead create two distinct<location>
entries — matching the pathnames of your logical repos under/u01/ciroot/subversion
– kostix
Nov 13 '18 at 10:36
JFTR there's not such thing as "Linux7". Linux is an operating system kernel, not an OS. Judging from the number 7, you might have wanted to refer to CentOS or RHEL, but I'm just guessing.
– kostix
Nov 13 '18 at 10:48
add a comment |
1
I'd say you have to instead create two distinct<location>
entries — matching the pathnames of your logical repos under/u01/ciroot/subversion
– kostix
Nov 13 '18 at 10:36
JFTR there's not such thing as "Linux7". Linux is an operating system kernel, not an OS. Judging from the number 7, you might have wanted to refer to CentOS or RHEL, but I'm just guessing.
– kostix
Nov 13 '18 at 10:48
1
1
I'd say you have to instead create two distinct
<location>
entries — matching the pathnames of your logical repos under /u01/ciroot/subversion
– kostix
Nov 13 '18 at 10:36
I'd say you have to instead create two distinct
<location>
entries — matching the pathnames of your logical repos under /u01/ciroot/subversion
– kostix
Nov 13 '18 at 10:36
JFTR there's not such thing as "Linux7". Linux is an operating system kernel, not an OS. Judging from the number 7, you might have wanted to refer to CentOS or RHEL, but I'm just guessing.
– kostix
Nov 13 '18 at 10:48
JFTR there's not such thing as "Linux7". Linux is an operating system kernel, not an OS. Judging from the number 7, you might have wanted to refer to CentOS or RHEL, but I'm just guessing.
– kostix
Nov 13 '18 at 10:48
add a comment |
1 Answer
1
active
oldest
votes
First, read the box titled "Do You Really Need Path-Based Access Control?" here: http://svnbook.red-bean.com/en/1.7/svn.serverconfig.pathbasedauthz.html
But if you still decide you want to do this, that link should help you set this up. But basically, create two location
entries: one for each repository. You point each at the group at the AD group that grants that permission.
If you want people in the OBIEE_PROD
group to have access to the DEV_REPO
too, then just add the OBIEE_PROD
group to your OBIEE_DEV
group in AD.
This is an example, but I can't guarantee this will work exactly as-is:
<location /svn/DEV_REPO>
DAV svn
SVNParentPath /u01/ciroot/subversion
AuthType Basic
AuthBasicProvider ldap
AuthName "Root Repo"
AuthLDAPURL "ldap://ldap.server.com:389/DC=macgroup,DC=local?sAMAccountName?sub?(&(ObjectClass=*)(memberOf=CN=OBIEE_DEV,OU=OBIEE,OU=Security,OU=Groups,OU=Global Resources,DC=MACGROUP,DC=LOCAL))" STARTTLS
AuthLDAPBindDN "CN=oidkerbt,OU=Service Accounts,OU=Users,OU=Global
Resources,DC=macgroup,DC=local"
AuthLDAPBindPassword password_of_ldap_server
Require valid-user
</location>
<location /svn/PROD_REPO>
DAV svn
SVNParentPath /u01/ciroot/subversion
AuthType Basic
AuthBasicProvider ldap
AuthName "Root Repo"
AuthLDAPURL "ldap://ldap.server.com:389/DC=macgroup,DC=local?sAMAccountName?sub?(&(ObjectClass=*)(memberOf=CN=OBIEE_PROD,OU=OBIEE,OU=Security,OU=Groups,OU=Global Resources,DC=MACGROUP,DC=LOCAL))" STARTTLS
AuthLDAPBindDN "CN=oidkerbt,OU=Service Accounts,OU=Users,OU=Global
Resources,DC=macgroup,DC=local"
AuthLDAPBindPassword password_of_ldap_server
Require valid-user
</location>
....i want to say thank you for suggesting this. Yes i had tried this and it worked with me with SVNPath. When i was giving SVNParentPath and giving the path of my parent SVN location, it was not working, so instead to SVNParentPath, i gave SVNPath and give location till my repository like /u01/ciroot/subversion/DEV_REPO. I want to say thank you to you for guiding me on this. Regards
– Amit Prasad
Nov 14 '18 at 6:54
Glad I could help.
– Gabriel Luci
Nov 14 '18 at 13:13
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53276851%2fhow-would-i-add-two-ad-groups-in-1-ldap-server%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
First, read the box titled "Do You Really Need Path-Based Access Control?" here: http://svnbook.red-bean.com/en/1.7/svn.serverconfig.pathbasedauthz.html
But if you still decide you want to do this, that link should help you set this up. But basically, create two location
entries: one for each repository. You point each at the group at the AD group that grants that permission.
If you want people in the OBIEE_PROD
group to have access to the DEV_REPO
too, then just add the OBIEE_PROD
group to your OBIEE_DEV
group in AD.
This is an example, but I can't guarantee this will work exactly as-is:
<location /svn/DEV_REPO>
DAV svn
SVNParentPath /u01/ciroot/subversion
AuthType Basic
AuthBasicProvider ldap
AuthName "Root Repo"
AuthLDAPURL "ldap://ldap.server.com:389/DC=macgroup,DC=local?sAMAccountName?sub?(&(ObjectClass=*)(memberOf=CN=OBIEE_DEV,OU=OBIEE,OU=Security,OU=Groups,OU=Global Resources,DC=MACGROUP,DC=LOCAL))" STARTTLS
AuthLDAPBindDN "CN=oidkerbt,OU=Service Accounts,OU=Users,OU=Global
Resources,DC=macgroup,DC=local"
AuthLDAPBindPassword password_of_ldap_server
Require valid-user
</location>
<location /svn/PROD_REPO>
DAV svn
SVNParentPath /u01/ciroot/subversion
AuthType Basic
AuthBasicProvider ldap
AuthName "Root Repo"
AuthLDAPURL "ldap://ldap.server.com:389/DC=macgroup,DC=local?sAMAccountName?sub?(&(ObjectClass=*)(memberOf=CN=OBIEE_PROD,OU=OBIEE,OU=Security,OU=Groups,OU=Global Resources,DC=MACGROUP,DC=LOCAL))" STARTTLS
AuthLDAPBindDN "CN=oidkerbt,OU=Service Accounts,OU=Users,OU=Global
Resources,DC=macgroup,DC=local"
AuthLDAPBindPassword password_of_ldap_server
Require valid-user
</location>
....i want to say thank you for suggesting this. Yes i had tried this and it worked with me with SVNPath. When i was giving SVNParentPath and giving the path of my parent SVN location, it was not working, so instead to SVNParentPath, i gave SVNPath and give location till my repository like /u01/ciroot/subversion/DEV_REPO. I want to say thank you to you for guiding me on this. Regards
– Amit Prasad
Nov 14 '18 at 6:54
Glad I could help.
– Gabriel Luci
Nov 14 '18 at 13:13
add a comment |
First, read the box titled "Do You Really Need Path-Based Access Control?" here: http://svnbook.red-bean.com/en/1.7/svn.serverconfig.pathbasedauthz.html
But if you still decide you want to do this, that link should help you set this up. But basically, create two location
entries: one for each repository. You point each at the group at the AD group that grants that permission.
If you want people in the OBIEE_PROD
group to have access to the DEV_REPO
too, then just add the OBIEE_PROD
group to your OBIEE_DEV
group in AD.
This is an example, but I can't guarantee this will work exactly as-is:
<location /svn/DEV_REPO>
DAV svn
SVNParentPath /u01/ciroot/subversion
AuthType Basic
AuthBasicProvider ldap
AuthName "Root Repo"
AuthLDAPURL "ldap://ldap.server.com:389/DC=macgroup,DC=local?sAMAccountName?sub?(&(ObjectClass=*)(memberOf=CN=OBIEE_DEV,OU=OBIEE,OU=Security,OU=Groups,OU=Global Resources,DC=MACGROUP,DC=LOCAL))" STARTTLS
AuthLDAPBindDN "CN=oidkerbt,OU=Service Accounts,OU=Users,OU=Global
Resources,DC=macgroup,DC=local"
AuthLDAPBindPassword password_of_ldap_server
Require valid-user
</location>
<location /svn/PROD_REPO>
DAV svn
SVNParentPath /u01/ciroot/subversion
AuthType Basic
AuthBasicProvider ldap
AuthName "Root Repo"
AuthLDAPURL "ldap://ldap.server.com:389/DC=macgroup,DC=local?sAMAccountName?sub?(&(ObjectClass=*)(memberOf=CN=OBIEE_PROD,OU=OBIEE,OU=Security,OU=Groups,OU=Global Resources,DC=MACGROUP,DC=LOCAL))" STARTTLS
AuthLDAPBindDN "CN=oidkerbt,OU=Service Accounts,OU=Users,OU=Global
Resources,DC=macgroup,DC=local"
AuthLDAPBindPassword password_of_ldap_server
Require valid-user
</location>
....i want to say thank you for suggesting this. Yes i had tried this and it worked with me with SVNPath. When i was giving SVNParentPath and giving the path of my parent SVN location, it was not working, so instead to SVNParentPath, i gave SVNPath and give location till my repository like /u01/ciroot/subversion/DEV_REPO. I want to say thank you to you for guiding me on this. Regards
– Amit Prasad
Nov 14 '18 at 6:54
Glad I could help.
– Gabriel Luci
Nov 14 '18 at 13:13
add a comment |
First, read the box titled "Do You Really Need Path-Based Access Control?" here: http://svnbook.red-bean.com/en/1.7/svn.serverconfig.pathbasedauthz.html
But if you still decide you want to do this, that link should help you set this up. But basically, create two location
entries: one for each repository. You point each at the group at the AD group that grants that permission.
If you want people in the OBIEE_PROD
group to have access to the DEV_REPO
too, then just add the OBIEE_PROD
group to your OBIEE_DEV
group in AD.
This is an example, but I can't guarantee this will work exactly as-is:
<location /svn/DEV_REPO>
DAV svn
SVNParentPath /u01/ciroot/subversion
AuthType Basic
AuthBasicProvider ldap
AuthName "Root Repo"
AuthLDAPURL "ldap://ldap.server.com:389/DC=macgroup,DC=local?sAMAccountName?sub?(&(ObjectClass=*)(memberOf=CN=OBIEE_DEV,OU=OBIEE,OU=Security,OU=Groups,OU=Global Resources,DC=MACGROUP,DC=LOCAL))" STARTTLS
AuthLDAPBindDN "CN=oidkerbt,OU=Service Accounts,OU=Users,OU=Global
Resources,DC=macgroup,DC=local"
AuthLDAPBindPassword password_of_ldap_server
Require valid-user
</location>
<location /svn/PROD_REPO>
DAV svn
SVNParentPath /u01/ciroot/subversion
AuthType Basic
AuthBasicProvider ldap
AuthName "Root Repo"
AuthLDAPURL "ldap://ldap.server.com:389/DC=macgroup,DC=local?sAMAccountName?sub?(&(ObjectClass=*)(memberOf=CN=OBIEE_PROD,OU=OBIEE,OU=Security,OU=Groups,OU=Global Resources,DC=MACGROUP,DC=LOCAL))" STARTTLS
AuthLDAPBindDN "CN=oidkerbt,OU=Service Accounts,OU=Users,OU=Global
Resources,DC=macgroup,DC=local"
AuthLDAPBindPassword password_of_ldap_server
Require valid-user
</location>
First, read the box titled "Do You Really Need Path-Based Access Control?" here: http://svnbook.red-bean.com/en/1.7/svn.serverconfig.pathbasedauthz.html
But if you still decide you want to do this, that link should help you set this up. But basically, create two location
entries: one for each repository. You point each at the group at the AD group that grants that permission.
If you want people in the OBIEE_PROD
group to have access to the DEV_REPO
too, then just add the OBIEE_PROD
group to your OBIEE_DEV
group in AD.
This is an example, but I can't guarantee this will work exactly as-is:
<location /svn/DEV_REPO>
DAV svn
SVNParentPath /u01/ciroot/subversion
AuthType Basic
AuthBasicProvider ldap
AuthName "Root Repo"
AuthLDAPURL "ldap://ldap.server.com:389/DC=macgroup,DC=local?sAMAccountName?sub?(&(ObjectClass=*)(memberOf=CN=OBIEE_DEV,OU=OBIEE,OU=Security,OU=Groups,OU=Global Resources,DC=MACGROUP,DC=LOCAL))" STARTTLS
AuthLDAPBindDN "CN=oidkerbt,OU=Service Accounts,OU=Users,OU=Global
Resources,DC=macgroup,DC=local"
AuthLDAPBindPassword password_of_ldap_server
Require valid-user
</location>
<location /svn/PROD_REPO>
DAV svn
SVNParentPath /u01/ciroot/subversion
AuthType Basic
AuthBasicProvider ldap
AuthName "Root Repo"
AuthLDAPURL "ldap://ldap.server.com:389/DC=macgroup,DC=local?sAMAccountName?sub?(&(ObjectClass=*)(memberOf=CN=OBIEE_PROD,OU=OBIEE,OU=Security,OU=Groups,OU=Global Resources,DC=MACGROUP,DC=LOCAL))" STARTTLS
AuthLDAPBindDN "CN=oidkerbt,OU=Service Accounts,OU=Users,OU=Global
Resources,DC=macgroup,DC=local"
AuthLDAPBindPassword password_of_ldap_server
Require valid-user
</location>
answered Nov 13 '18 at 13:47
Gabriel LuciGabriel Luci
10.5k11424
10.5k11424
....i want to say thank you for suggesting this. Yes i had tried this and it worked with me with SVNPath. When i was giving SVNParentPath and giving the path of my parent SVN location, it was not working, so instead to SVNParentPath, i gave SVNPath and give location till my repository like /u01/ciroot/subversion/DEV_REPO. I want to say thank you to you for guiding me on this. Regards
– Amit Prasad
Nov 14 '18 at 6:54
Glad I could help.
– Gabriel Luci
Nov 14 '18 at 13:13
add a comment |
....i want to say thank you for suggesting this. Yes i had tried this and it worked with me with SVNPath. When i was giving SVNParentPath and giving the path of my parent SVN location, it was not working, so instead to SVNParentPath, i gave SVNPath and give location till my repository like /u01/ciroot/subversion/DEV_REPO. I want to say thank you to you for guiding me on this. Regards
– Amit Prasad
Nov 14 '18 at 6:54
Glad I could help.
– Gabriel Luci
Nov 14 '18 at 13:13
....i want to say thank you for suggesting this. Yes i had tried this and it worked with me with SVNPath. When i was giving SVNParentPath and giving the path of my parent SVN location, it was not working, so instead to SVNParentPath, i gave SVNPath and give location till my repository like /u01/ciroot/subversion/DEV_REPO. I want to say thank you to you for guiding me on this. Regards
– Amit Prasad
Nov 14 '18 at 6:54
....i want to say thank you for suggesting this. Yes i had tried this and it worked with me with SVNPath. When i was giving SVNParentPath and giving the path of my parent SVN location, it was not working, so instead to SVNParentPath, i gave SVNPath and give location till my repository like /u01/ciroot/subversion/DEV_REPO. I want to say thank you to you for guiding me on this. Regards
– Amit Prasad
Nov 14 '18 at 6:54
Glad I could help.
– Gabriel Luci
Nov 14 '18 at 13:13
Glad I could help.
– Gabriel Luci
Nov 14 '18 at 13:13
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53276851%2fhow-would-i-add-two-ad-groups-in-1-ldap-server%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
I'd say you have to instead create two distinct
<location>
entries — matching the pathnames of your logical repos under/u01/ciroot/subversion
– kostix
Nov 13 '18 at 10:36
JFTR there's not such thing as "Linux7". Linux is an operating system kernel, not an OS. Judging from the number 7, you might have wanted to refer to CentOS or RHEL, but I'm just guessing.
– kostix
Nov 13 '18 at 10:48