the upper limit of openssh when remote interpreter
已回答
when I use the remote interpreter (python3.5) on a linux server in pycharm, it will create some openssh services in the server.
so I wanna know what is the upper limit of openssh for pycharm
or where can I set the limit number?
many thanks
请先登录再写评论。
Hello,
There is no default value for the number of sessions.
You can set the maximum number of allowed connections in SFTP advanced settings:
https://www.jetbrains.com/help/pycharm/deployment-connection-tab.html#edc17006
Defining the limit, please check if your server enforces any limit on the number of connections. See the
MaxSessionsparameter in thesshd_configon the server. IDE's limit should not be greater than the server's one.thank for your answer!