Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add LDAP authentication page #10

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions auth/use-ldap-authentication.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
---
layout: default
title: Use LDAP authentication
---

### Problem

You want to use LDAP authentication when Node-RED users login to Node-RED editor.

### Solution

Install LDAP authentication module, [node-red-auth-contrib-ldap](https://www.npmjs.com/package/node-red-auth-contrib-ldap) and configure LDAP server information in settings.js.

#### Example

After the setup, you can use LDAP authentication when you access to Node-RED editor.
![](/images/auth/auth-login.png)


#### Configration

(1) Install LDAP authentication module
```
sudo npm install -g node-red-auth-contrib-ldap
```

(2) Add LDAP server information into settings.js
```
vi ~/.node-red/settings.js
```
Add adminAuth block in module.exports block as follows.
```
module.exports = {
...
adminAuth: require("node-red-auth-contrib-ldap").init({
url: "ldap://<hostname>:389",
dn: "uid=%username%,ou=people,o=example,c=jp"
}),
...
}
```

(3) Run Node-RED
```
node-red
```

### Discussion

You can modify dn(distinguished name) which corresponds with your LDAP server.
%username% is reserved word which dn string has as user name.

Binary file added images/auth/auth-login.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.