Skip to content

Commit 90f0388

Browse files
committed
Document requirement to generate consistent session keys
1 parent 9aa4bb6 commit 90f0388

File tree

3 files changed

+35
-3
lines changed

3 files changed

+35
-3
lines changed

README.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,29 @@ functionality.
4747
## Clustered CouchDB nodes
4848

4949
All nodes in the cluster must have the same `uuid`, `cookie`, `admin_username`
50-
and `admin_password`. It is recommended to pre-generate the UUID and place it in
50+
and `admin_password`.
51+
52+
It is recommended to pre-generate the UUID and place it in
5153
your cookbook. The following one-liner will generate a CouchDB UUID:
5254

5355
```bash
5456
python -c "import uuid;print(uuid.uuid4().hex)"
5557
```
5658

59+
Further, if you want session cookies from one node to work on another (for
60+
instance, when putting a load balancer in front of CouchDB) the _hashed_ admin
61+
password must match on every machine as well. There are many ways to
62+
pre-generate a hashed password. One way is by downloading and extracting
63+
CouchDB's source code, changing into the `dev/` directory, and running the
64+
following one-liner, replacing `MYPASSWORD` with your desired password:
65+
66+
```bash
67+
python -c 'import uuid;from pbkdf2 import pbkdf2_hex;password="MYPASSWORD";salt=uuid.uuid4().hex;iterations=10;print("-pbkdf2-{},{},{}".format(pbkdf2_hex(password,salt,iterations,20),salt,iterations))'
68+
```
69+
70+
Place this hashed password in your recipe, cookbook, data bag, encrypted data
71+
bag, vault, etc.
72+
5773
For each machine to run a CouchDB clustered node, use a block of the form:
5874

5975
```ruby

doc/overview.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,29 @@ functionality.
4545
## Clustered CouchDB nodes
4646

4747
All nodes in the cluster must have the same `uuid`, `cookie`, `admin_username`
48-
and `admin_password`. It is recommended to pre-generate the UUID and place it in
48+
and `admin_password`.
49+
50+
It is recommended to pre-generate the UUID and place it in
4951
your cookbook. The following one-liner will generate a CouchDB UUID:
5052

5153
```bash
5254
python -c "import uuid;print(uuid.uuid4().hex)"
5355
```
5456

57+
Further, if you want session cookies from one node to work on another (for
58+
instance, when putting a load balancer in front of CouchDB) the _hashed_ admin
59+
password must match on every machine as well. There are many ways to
60+
pre-generate a hashed password. One way is by downloading and extracting
61+
CouchDB's source code, changing into the `dev/` directory, and running the
62+
following one-liner, replacing `MYPASSWORD` with your desired password:
63+
64+
```bash
65+
python -c 'import uuid;from pbkdf2 import pbkdf2_hex;password="MYPASSWORD";salt=uuid.uuid4().hex;iterations=10;print("-pbkdf2-{},{},{}".format(pbkdf2_hex(password,salt,iterations,20),salt,iterations))'
66+
```
67+
68+
Place this hashed password in your recipe, cookbook, data bag, encrypted data
69+
bag, vault, etc.
70+
5571
For each machine to run a CouchDB clustered node, use a block of the form:
5672

5773
```ruby

metadata.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
or direct from source code (source recipe). Convenience LWRPs are provided to
1212
create databases as well.
1313
EOH
14-
version '3.0.0'
14+
version '3.0.1'
1515

1616
depends 'build-essential'
1717
depends 'compat_resource'

0 commit comments

Comments
 (0)