четверг, 26 января 2017 г.

Импорт ovf с ошибкой Unsupported hardware family vmx-11

Просто меняем в ovf  vmx-11 на vmx-7, например.
Затем снимаем контрольную сумму (SHA1) файла ovf  и меняем её в файле mf.
Контрольную сумму можно получить консольной утилитой fciv от Microsoft.

понедельник, 9 января 2017 г.

Решение для SSL3_GET_CLIENT_HELLO:no shared cipher.

При подключении через vSphere Client выдает "the client could not send a complete request". В логе /var/log/rhttpproxy.log следующее:
SSLStreamImpl::DoServerHandshake (04512860) SSL_accept failed. Dumping SSL error queue
error:1408A0C1:SSL routines:SSL3_GET_CLIENT_HELLO:no shared cipher

Решение отсюда:

  1. Connect to the host via SSH.
  2. Navigate to the directory:

    /etc/vmware/rhttpproxy/
  3. Backup the config.xml file. Do not skip this step.
  4. Open config.xml file using vi editor.
  5. Add the <cipherList>ALL</cipherList> parameter between the <ssl>...</ssl> section of the configuration file. Use the model below as an example: 

    <config>
    ...<vmacore>...<ssl><doVersionCheck> false </doVersionCheck><useCompression>true</useCompression><libraryPath>/lib/</libraryPath><handshakeTimeoutMs>120000</handshakeTimeoutMs><cipherList>ALL</cipherList></ssl>...</vmacore>...</config>
  6. Save and close the config.xml file
  7. Reset the rhttpproxy service for the change to take effect by running the command:

    /etc/init.d/rhttpproxy restart