This repository has been archived on 2026-06-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
wsh5485 f525f30aae docs: 添加E3_ycsys系统部署指南文档
添加系统部署指南文档,包含IIS应用池设置、数据库连接配置、文件夹权限设置和系统要求等关键部署信息
2025-06-16 15:23:03 +08:00

E3_ycsys 系统部署指南

IIS 应用池设置

  1. 创建新的应用程序池:

    • .NET CLR 版本:v4.0
    • 托管管道模式:集成模式
    • 标识:ApplicationPoolIdentity
  2. 基本设置:

    • 启动模式:AlwaysRunning
    • 空闲超时:0(禁用)

数据库连接配置

  1. 修改Web.config文件:
<connectionStrings>
  <add name="E3_ycsysConnection" 
       connectionString="Data Source=162.14.110.130,2433;Initial Catalog=e3test;User ID=sa;Password=your_password;" 
       providerName="System.Data.SqlClient"/>
</connectionStrings>

文件夹权限设置

  1. 授予IIS应用程序池账户权限:
    • IIS_IUSRS组:读取和执行权限
    • 应用程序池账户:修改权限

系统要求

  • IIS 7.0+
  • .NET Framework 4.0+
  • SQL Server 2008+
S
Description
No description provided
Readme 51 KiB
2025-12-05 01:23:22 +08:00
Languages
ASP.NET 54.7%
C# 45.3%