浏览代码

doc: add more details about systemd limits

master
Goacid 5 年前
父节点
当前提交
a41bda73ff
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 7 次插入1 次删除
  1. 7
    1
      doc/quick-install.md

+ 7
- 1
doc/quick-install.md 查看文件

@@ -81,12 +81,18 @@ See [the documentation of ice4j](https://github.com/jitsi/ice4j/blob/master/doc/
81 81
 for details.
82 82
 
83 83
 Default deployments on systems using systemd will have low default values for maximum processes and open files. If the used bridge will expect higher number of participants the default values need to be adjusted (the default values are good for less than 100 participants).
84
-To update the values edit `/etc/systemd/system.conf` and make sure you have the following values:
84
+To update the values edit `/etc/systemd/system.conf` and make sure you have the following values if values are smaller, if not do not update.
85 85
 ```
86 86
 DefaultLimitNOFILE=65000
87 87
 DefaultLimitNPROC=65000
88 88
 DefaultTasksMax=65000
89 89
 ```
90
+To check values just run :
91
+```
92
+systemctl show --property DefaultLimitNPROC
93
+systemctl show --property DefaultLimitNOFILE
94
+systemctl show --property DefaultTasksMax
95
+```
90 96
 To load the values and check them look [here](#systemd-details) for details.
91 97
 
92 98
 By default, anyone who has access to your jitsi instance will be able to start a conference: if your server is open to the world, anyone can have a chat with anyone else. If you want to limit the ability to start a conference to registered users, set up a "secure domain". Follow the instructions at https://github.com/jitsi/jicofo#secure-domain.

正在加载...
取消
保存