Skip to content

Commit 6b30301

Browse files
Merge pull request #74473 from ClickHouse/no-ssh
Disable SSH server (unreleased)
2 parents 3ddd7c9 + 06eeb53 commit 6b30301

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

programs/server/Server.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2874,7 +2874,7 @@ void Server::createServers(
28742874
servers,
28752875
[&](UInt16 port) -> ProtocolServerAdapter
28762876
{
2877-
#if USE_SSH && defined(OS_LINUX)
2877+
#if 0 && USE_SSH && defined(OS_LINUX) /// SSH server is insecure until and it is disabled until all special cases are fixed.
28782878
Poco::Net::ServerSocket socket;
28792879
auto address = socketBindListen(config, socket, listen_host, port, /* secure = */ false);
28802880
return ProtocolServerAdapter(
File renamed without changes.

0 commit comments

Comments
 (0)