I'm trying to upgrade our 9.3 to 9.4 but I got this error message: ____________________________________________________________________________________________ The following problem was encountered while configuring SAS Metadata Server Configuration: No MetadataServer listener was detected. Host=XXXXX.DomainName.local. Port=8561. Configuration script: C:\Program Files\SASHome2\SASFoundation\9.4\core\sasmisc\sasconf\metadatasrv\config\metadatasrv_config.xml For more information, see the log file located at C:\SAS\Config\Lev1\Logs\Configure\metadatasrv_configureMetadata_2016-04-22-12.05.54.log You should confirm that this configuration error will not lead to errors with other products before ignoring the error by answering Yes or Yes to All to the continuation question below. If you select Yes or Yes to All, you will not be able to retry any ignored steps without completely unconfiguring and then configuring again. If you are uncertain, contact SAS Technical Support for guidance before continuing with this deployment. Would you like to continue with the remaining configuration steps? ________________________________________________________________________________________________________ And this is what it says in the log: <var name="metadatasrv.server.is.running" unset="true" /> <var name="metadatasrv.recover.is.allowed" unset="true" /> <var name="metadatasrv.running.as.service" unset="true" /> <propertyregex property="metadatasrv.windows.server.state.tag" input="${metadatasrv.windows.server.state.line}" regexp=".*STATE.*:.*[0-9] ([A-Z]*) $" select="\1" casesensitive="true" /> <if><equals arg1="${metadatasrv.windows.server.state.tag}" arg2="RUNNING" casesensitive="True"/> <then> <echo message="The service "${local.metadatasrv.service.name}" is running." /> <property name="metadatasrv.server.is.running" value="true" /> <property name="metadatasrv.recover.is.allowed" value="false" /> <property name="metadatasrv.running.as.service" value="true" /> </then> <else> <echo message="The service "${local.metadatasrv.service.name}" is not running." /> <property name="metadatasrv.server.is.running" value="false" /> <property name="metadatasrv.recover.is.allowed" value="true" /> <property name="metadatasrv.running.as.service" value="true" /> </else> </if> </then> <else> <var name="metadatasrv.server.is.running" unset="true" /> <var name="metadatasrv.recover.is.allowed" unset="true" /> <if><isset property="onZosHosts"/> <then> <!-- ensure z/OS server.HOSTNAME.pid file exists and the port is listening --> <waitfor timeoutproperty="noMetadataServerListener" maxwait="${metadataserver.listener.zos.timeout}" maxwaitunit="second" checkevery="2" checkeveryunit="second"> <and> <available file="${metadatasrv.config.dir}/${metadatasrv.pid.filename}"/> <socket server="${iomsrv.metadatasrv.}" port="${iomsrv.metadatasrv.port}"/> </and> </waitfor> </then> <else> <waitfor timeoutproperty="noMetadataServerListener" maxwait="${metadatasrv.listener.timeout}" maxwaitunit="second" checkevery="2" checkeveryunit="second"> <socket server="${iomsrv.metadatasrv.host}" port="${iomsrv.metadatasrv.port}"/> </waitfor> Where the error says "Host=XXXXX.DomainName.local. Port=8561." The XXXXX.DomainName I edited to that but in that name, our server name has an underscore there and would have been XX_XXX.DomainName but the wizard wouldn't let me enter the "_" in some steps but in others, I was able to enter the complete name with the underscore. Could the unerscore in our server name be causing the problem? This is only my 2nd time upgrading and both times are 9.3 to 9.4. I didn't have any problems the first time I upgraded.
... View more