Author Topic: [SOLVED] Nuance Speech Server on Centos7/RHEL7  (Read 1925 times)

Offline zwerg82

  • Newbie
  • *
  • Posts: 30
  • Karma: 2
[SOLVED] Nuance Speech Server on Centos7/RHEL7
« on: January 04, 2019, 05:32:51 PM »
Hi all,

due to Apache 2.4 the installation of Nuance Speech Server is not working properly.
As httpd won't start with the Nuance configuration file.

Has anybody installed it already successfully?

Thx,

« Last Edit: January 11, 2019, 01:05:55 AM by zwerg82 »

Offline Kubig

  • Hero Member
  • *****
  • Posts: 2734
  • Karma: 43
Re: Nuance Speech Server on Centos7/RHEL7
« Reply #1 on: January 04, 2019, 10:15:01 PM »
What is NSS version? What is the exact error you get?
Genesys certified professional consultant (GVP, SIP, GIR and Troubleshooting)

Offline zwerg82

  • Newbie
  • *
  • Posts: 30
  • Karma: 2
Re: Nuance Speech Server on Centos7/RHEL7
« Reply #2 on: January 07, 2019, 05:19:23 PM »
Hi Kubig,

sorry for the late reply.

NSS version is 6.2.11

Error Message:
Code: [Select]
httpd[6587]: AH00526: Syntax error on line 10 of /etc/httpd/conf.d/zNSS.conf:
httpd[6587]: You may not use 'Options +All' or 'Options -All'.
httpd.service: main process exited, code=exited, status=1/FAILURE
httpd.service: control process exited, code=exited status=1
Unit httpd.service entered failed state.
httpd.service failed.

Found the following in the Release Notes:
Quote
ENSS-572 – Installed configuration does not work with CentOS 7 native web server (Apache 2.4). Please contact Nuance Technical Support for workaround instructions

Best regards,

Offline Kubig

  • Hero Member
  • *****
  • Posts: 2734
  • Karma: 43
Re: Nuance Speech Server on Centos7/RHEL7
« Reply #3 on: January 07, 2019, 11:57:51 PM »
So, contact support to get the workaround information. I suppose it will be some misconfiguration on HTTPD level
Genesys certified professional consultant (GVP, SIP, GIR and Troubleshooting)

Offline zwerg82

  • Newbie
  • *
  • Posts: 30
  • Karma: 2
Re: Nuance Speech Server on Centos7/RHEL7
« Reply #4 on: January 11, 2019, 01:05:22 AM »
After Nuance was not very helpful and just suggested to disable the configuration file and not use HTTPD at all,
I've tried to fix it on my own.

Here the changes you have to do @zNSS.conf:

Code: [Select]
Remove: NameVirtualHost *:90
Code: [Select]
<Directory "/var/local/Nuance">
      Options All
      Require all granted
    </Directory>
    <LocationMatch "^/+$">
      Options All
    </LocationMatch>

Best regards,