Free cookie consent management tool by TermsFeed Policy Generator

Changes between Version 3 and Version 4 of Documentation/Howto/SetupHiveServer


Ignore:
Timestamp:
12/28/10 11:55:36 (14 years ago)
Author:
cneumuel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Documentation/Howto/SetupHiveServer

    v3 v4  
    2323 * Create a new application within the website and call it Hive-3.3 and use the already created appPool Hive-3.3
    2424 * Open advanced settings of the application and enter `http, net.tcp` as enabled protocols
     25 * Grant the usergroup `IIS_IUSRS` read-permissions on the application directory
    2526
    2627
     
    2829 * Exception `Could Not Load Type System.ServiceModel.Activation.HttpModule`
    2930  * run `aspnet_regiis.exe -iru`
     31 * "HTTP-Fehler 500.19 - Internal Server Error: Dieser Konfigurationsabschnitt kann in diesem Pfad nicht verwendet werden. Dies ist der Fall, wenn der Abschnitt auf übergeordneter Ebene gesperrt ist. Die Sperrung erfolgt standardmäßig (overrideModeDefault="Deny") oder wird explizit mit einem location-Tag mit overrideMode="Deny" oder der Legacyeinstellung allowOverride="false" festgelegt."
     32{{{
     33Konfigurationsquelle
     34  139:   <system.webServer>
     35  140:     <modules runAllManagedModulesForAllRequests="true">
     36  141:       <add name="HiveServerModule" type="HeuristicLab.Hive.Server.Core.IISModules.HiveServerModule"/>
     37}}}
     38  * Open Visual Studio command prompt as administrator and go to `%windir%\system32\inetsrv\config`
     39  * Enter "`notepad applicationHost.config`"
     40  * Search for the line
     41{{{
     42<section name="modules" allowDefinition="MachineToApplication" overrideModeDefault="Deny" />
     43}}}
     44  * Change `overrideModeDefault` to `Allow`.