the upper limit of openssh when remote interpreter
Answered
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
Please sign in to leave a comment.
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!