Create User Using EM CLI Results in 'An internal error occurred'

After installing Enterprise Manager Cloud Control 13c Release 4, you will get an error with emcli create_user command when running the following:
emcli create_user -name=<new_user> -password=<password> -privilege=SUPER_USER

You will get the following error: 'An internal error occurred'

The workaround is to connect to the OMS and do the following:

  1. Open the file <INSTANCE_HOME>/user_projects/domains/GCDomain/config/fmwconfig/ovd/default/adapters.os_xml

  2. Search for <ns3:ldap...> section. If that section contains <ns3:serverType>WLS_OVD</ns3:serverType> tag then proceed with the next step.

  3. Within the same <ns3:ldap...> section from step 2, find <ns3:cipherSuites/> tag and replace it with following:
    <ns3:cipherSuites>
        <ns3:cipher>SSL_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384</ns3:cipher>
        <ns3:cipher>SSL_ECDHE_RSA_WITH_AES_256_CBC_SHA384</ns3:cipher>
        <ns3:cipher>SSL_RSA_WITH_AES_256_CBC_SHA256</ns3:cipher>
        <ns3:cipher>SSL_ECDH_ECDSA_WITH_AES_256_CBC_SHA384</ns3:cipher>
        <ns3:cipher>SSL_ECDH_RSA_WITH_AES_256_CBC_SHA384</ns3:cipher>
        <ns3:cipher>SSL_DHE_RSA_WITH_AES_256_CBC_SHA256</ns3:cipher>
        <ns3:cipher>SSL_DHE_DSS_WITH_AES_256_CBC_SHA256</ns3:cipher>
        <ns3:cipher>SSL_ECDHE_ECDSA_WITH_AES_256_CBC_SHA</ns3:cipher>
        <ns3:cipher>SSL_ECDHE_RSA_WITH_AES_256_CBC_SHA</ns3:cipher>
        <ns3:cipher>SSL_RSA_WITH_AES_256_CBC_SHA</ns3:cipher>
        <ns3:cipher>SSL_ECDH_ECDSA_WITH_AES_256_CBC_SHA</ns3:cipher>
        <ns3:cipher>SSL_ECDH_RSA_WITH_AES_256_CBC_SHA</ns3:cipher>
        <ns3:cipher>SSL_DHE_RSA_WITH_AES_256_CBC_SHA</ns3:cipher>
        <ns3:cipher>SSL_DHE_DSS_WITH_AES_256_CBC_SHA</ns3:cipher>
        <ns3:cipher>SSL_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256</ns3:cipher>
        <ns3:cipher>SSL_ECDHE_RSA_WITH_AES_128_CBC_SHA256</ns3:cipher>
        <ns3:cipher>SSL_RSA_WITH_AES_128_CBC_SHA256</ns3:cipher>
        <ns3:cipher>SSL_ECDH_ECDSA_WITH_AES_128_CBC_SHA256</ns3:cipher>
        <ns3:cipher>SSL_ECDH_RSA_WITH_AES_128_CBC_SHA256</ns3:cipher>
        <ns3:cipher>SSL_DHE_RSA_WITH_AES_128_CBC_SHA256</ns3:cipher>
        <ns3:cipher>SSL_DHE_DSS_WITH_AES_128_CBC_SHA256</ns3:cipher>
        <ns3:cipher>SSL_ECDHE_ECDSA_WITH_AES_128_CBC_SHA</ns3:cipher>
        <ns3:cipher>SSL_ECDHE_RSA_WITH_AES_128_CBC_SHA</ns3:cipher>
        <ns3:cipher>SSL_RSA_WITH_AES_128_CBC_SHA</ns3:cipher>
        <ns3:cipher>SSL_ECDH_ECDSA_WITH_AES_128_CBC_SHA</ns3:cipher>
        <ns3:cipher>SSL_ECDH_RSA_WITH_AES_128_CBC_SHA</ns3:cipher>
        <ns3:cipher>SSL_DHE_RSA_WITH_AES_128_CBC_SHA</ns3:cipher>
        <ns3:cipher>SSL_DHE_DSS_WITH_AES_128_CBC_SHA</ns3:cipher>
        <ns3:cipher>SSL_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384</ns3:cipher>
        <ns3:cipher>SSL_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256</ns3:cipher>
        <ns3:cipher>SSL_ECDHE_RSA_WITH_AES_256_GCM_SHA384</ns3:cipher>
        <ns3:cipher>SSL_RSA_WITH_AES_256_GCM_SHA384</ns3:cipher>
        <ns3:cipher>SSL_ECDH_ECDSA_WITH_AES_256_GCM_SHA384</ns3:cipher>
        <ns3:cipher>SSL_ECDH_RSA_WITH_AES_256_GCM_SHA384</ns3:cipher>
        <ns3:cipher>SSL_DHE_DSS_WITH_AES_256_GCM_SHA384</ns3:cipher>
        <ns3:cipher>SSL_DHE_RSA_WITH_AES_256_GCM_SHA384</ns3:cipher>
        <ns3:cipher>SSL_ECDHE_RSA_WITH_AES_128_GCM_SHA256</ns3:cipher>
        <ns3:cipher>SSL_RSA_WITH_AES_128_GCM_SHA256</ns3:cipher>
        <ns3:cipher>SSL_ECDH_ECDSA_WITH_AES_128_GCM_SHA256</ns3:cipher>
        <ns3:cipher>SSL_ECDH_RSA_WITH_AES_128_GCM_SHA256</ns3:cipher>
        <ns3:cipher>SSL_DHE_RSA_WITH_AES_128_GCM_SHA256</ns3:cipher>
        <ns3:cipher>SSL_DHE_DSS_WITH_AES_128_GCM_SHA256</ns3:cipher>
        </ns3:cipherSuites>
  4. Restart the OMS.

(Bug 30435489)