forked from ravendb/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
66 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -120,17 +120,17 @@ cannot automatically renew the Lets Encrypt certificate. Please contact support. | |
If it's not the same error as above, please open [settings.json](../configuration/configuration-options#json) and make sure you have all the field defined properly. Take a look at the following example: | ||
|
||
{CODE-BLOCK:JSON} | ||
{ | ||
"DataDir": "RavenData", | ||
"License.Eula.Accepted": true, | ||
"Security.Certificate.LetsEncrypt.Email": "[email protected]", | ||
"Setup.Mode": "LetsEncrypt", | ||
"Security.Certificate.Path": "cluster.server.certificate.aws.pfx", | ||
"ServerUrl": "https://172.31.30.163", | ||
"ServerUrl.Tcp": "tcp://172.31.30.163:38888", | ||
"ExternalIp": "35.130.249.162", | ||
"PublicServerUrl": "https://a.aws.development.run", | ||
"PublicServerUrl.Tcp": "tcp://a.aws.development.run:38888" | ||
{ | ||
"DataDir": "RavenData", | ||
"License.Eula.Accepted": true, | ||
"Security.Certificate.LetsEncrypt.Email": "[email protected]", | ||
"Setup.Mode": "LetsEncrypt", | ||
"Security.Certificate.Path": "cluster.server.certificate.aws.pfx", | ||
"ServerUrl": "https://172.31.30.163", | ||
"ServerUrl.Tcp": "tcp://172.31.30.163:38888", | ||
"ExternalIp": "35.130.249.162", | ||
"PublicServerUrl": "https://a.aws.development.run", | ||
"PublicServerUrl.Tcp": "tcp://a.aws.development.run:38888" | ||
} | ||
{CODE-BLOCK/} | ||
Things to check: | ||
|
@@ -305,11 +305,11 @@ Memory exception occurred: System.InsufficientMemoryException: Failed to increas | |
|
||
When encryption is turned on, RavenDB locks memory in order to avoid leaking secrets to disk. Read more [here](../../server/security/encryption/encryption-at-rest#locking-memory). | ||
|
||
By default RavenDB treats this error as catastrophic and will not continue the operation. | ||
By default, RavenDB treats this error as catastrophic and will not continue the operation. | ||
You can change this behavior but it's not recommended and should be done only after a proper security analysis is performed, see the [Security Configuration Section](../../server/configuration/security-configuration#security.donotconsidermemorylockfailureascatastrophicerror). | ||
|
||
If such a catastrophic error occurs in **Windows**, RavenDB will try to recover automatically by increasing the size of the minimum working set and retrying the operation. | ||
In **Linux**, it is the admin's responibility to configure higher limits manually using: | ||
In **Linux**, it is the admin's responsibility to configure higher limits manually using: | ||
{CODE-BLOCK:plain} | ||
sudo prlimit --pid [process-id] --memlock=[new-limit-in-bytes] | ||
{CODE-BLOCK/} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters