Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
*/
package org.opends.server.protocols.jmx;

import static org.opends.messages.ProtocolMessages.*;
import static org.opends.server.util.StaticUtils.*;

import java.io.IOException;
import java.net.InetAddress;
import java.rmi.RemoteException;
Expand Down Expand Up @@ -182,6 +185,11 @@ public void initialize()
{
logger.traceException(e);

logger.error(ERR_JMX_CONNHANDLER_CANNOT_START_RMI_CONNECTOR,
jmxConnectionHandler.getComponentEntryDN(),
jmxConnectionHandler.getListenPort(),
getExceptionMessage(e));

throw new RuntimeException("Error while starting the RMI module : "
+ e.getMessage());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# Copyright 2006-2009 Sun Microsystems, Inc.
# Portions Copyright 2013-2016 ForgeRock AS.
# Portions copyright 2013-2014 Manuel Gaupp

# Portions Copyright 2026 3A Systems LLC.


#
Expand Down Expand Up @@ -731,6 +731,9 @@ ERR_JMX_SEARCH_INSUFFICIENT_PRIVILEGES_438=You do not have sufficient \
ERR_JMX_INSUFFICIENT_PRIVILEGES_439=You do not have sufficient \
privileges to establish the connection through JMX. At least JMX_READ \
privilege is required
ERR_JMX_CONNHANDLER_CANNOT_START_RMI_CONNECTOR_1537=The JMX connection \
handler defined in configuration entry %s was unable to start the JMX \
RMI connector on port %d: %s
ERR_INTERNALCONN_NO_SUCH_USER_440=User %s does not exist in the directory
ERR_INTERNALOS_CLOSED_441=This output stream has been closed
ERR_INTERNALOS_INVALID_REQUEST_442=The provided LDAP message had an \
Expand Down
Loading