Skip to content

Commit a734392

Browse files
committed
Active directory guide
1 parent 7a8a030 commit a734392

17 files changed

+527
-31
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,6 @@ target/
99
*.iml
1010
*.ipr
1111
*.iws
12-
*.txt
12+
*.txt
13+
index.html
14+
index.pdf

allow-hazelcast-port.ps1

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
New-NetFirewallRule -DisplayName 'Hazelcast ports 5701-5703' `
2+
-Name Hazelcast -Direction Inbound -Action Allow `
3+
-Protocol TCP -LocalPort 5701-5703

create-groups-and-map-user.ps1

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
New-ADGroup -Name "Acme Cache" -GroupScope Global `
2+
-Description "Cache users"
3+
New-ADGroup -Name "Acme Cache Czechia" -GroupScope Global `
4+
-Description "Cache users in the Czech Republic"
5+
6+
Add-ADGroupMember -Identity "Acme Cache" -Members "Acme Cache Czechia"
7+
Add-ADGroupMember -Identity "Acme Cache Czechia" -Members hazelcast

debug-logging.properties

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
handlers=java.util.logging.ConsoleHandler
2+
.level=INFO
3+
java.util.logging.ConsoleHandler.level=ALL
4+
java.util.logging.SimpleFormatter.format=%1$tF-%1$tT [%4$s] %2$s %5$s%6$s%n
5+
com.hazelcast.security.level=ALL

doc/antora.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: guide-name # a brief module name. This will be included in the guide url.
2-
title: Guide Title # a brief module title. This will not show up on the website.
1+
name: active-directory-authentication # a brief module name. This will be included in the guide url.
2+
title: Active Directory authentication in Hazelcast
33
version: master
44

0 commit comments

Comments
 (0)