From 0b965868280da1f90addd8310eead9cfc40bb382 Mon Sep 17 00:00:00 2001 From: Andreas Nilsson Date: Wed, 20 Apr 2016 19:28:03 -0400 Subject: SERVER-23838 Disable warnings for no access control and no bind_ip --- src/mongo/db/startup_warnings_common.cpp | 49 ++++++++++++++++---------------- 1 file changed, 25 insertions(+), 24 deletions(-) (limited to 'src/mongo/db/startup_warnings_common.cpp') diff --git a/src/mongo/db/startup_warnings_common.cpp b/src/mongo/db/startup_warnings_common.cpp index e3010bcb0a9..d4a7944ee66 100644 --- a/src/mongo/db/startup_warnings_common.cpp +++ b/src/mongo/db/startup_warnings_common.cpp @@ -74,30 +74,31 @@ void logCommonStartupWarnings(const ServerGlobalParams& serverParams) { warned = true; } - if (serverParams.authState == ServerGlobalParams::AuthState::kUndefined) { - log() << startupWarningsLog; - if (serverParams.bind_ip.empty()) { - log() << "** WARNING: Insecure configuration, access control is not " - "enabled and no --bind_ip has been specified." << startupWarningsLog; - log() << "** Read and write access to data and configuration is " - "unrestricted, " << startupWarningsLog; - log() << "** and the server listens on all available network interfaces." - << startupWarningsLog; - } else { - log() << "** WARNING: Access control is not enabled for the database." - << startupWarningsLog; - log() << "** Read and write access to data and configuration is " - "unrestricted." << startupWarningsLog; - } - warned = true; - } else if (serverParams.bind_ip.empty()) { - log() << startupWarningsLog; - log() << "** WARNING: The server was started without specifying a " - "--bind_ip " << startupWarningsLog; - log() << "** and listens for connections on all available " - "network interfaces." << startupWarningsLog; - warned = true; - } + // SERVER-23838 Disable warnings for no access control enabled and no bind_ip + // if (serverParams.authState == ServerGlobalParams::AuthState::kUndefined) { + // log() << startupWarningsLog; + // if (serverParams.bind_ip.empty()) { + // log() << "** WARNING: Insecure configuration, access control is not " + // "enabled and no --bind_ip has been specified." << startupWarningsLog; + // log() << "** Read and write access to data and configuration is " + // "unrestricted, " << startupWarningsLog; + // log() << "** and the server listens on all available network interfaces." + // << startupWarningsLog; + // } else { + // log() << "** WARNING: Access control is not enabled for the database." + // << startupWarningsLog; + // log() << "** Read and write access to data and configuration is " + // "unrestricted." << startupWarningsLog; + // } + // warned = true; + // } else if (serverParams.bind_ip.empty()) { + // log() << startupWarningsLog; + // log() << "** WARNING: The server was started without specifying a " + // "--bind_ip " << startupWarningsLog; + // log() << "** and listens for connections on all available " + // "network interfaces." << startupWarningsLog; + // warned = true; + // } const bool is32bit = sizeof(int*) == 4; if (is32bit) { -- cgit v1.2.1