远程工具
- 远程工具用Xshell,FTP工具用WinSCP
- 使用 Nginx 在 Linux 上托管 ASP.NET Core
CentOS
CentOS 7 使用 Yum 作为包管理器,CentOS 8 使用 DNF。
下表列出了 CentOS 7 和 CentOS 8 上当前受支持的 .NET 版本。
CentOS | .NET Core 2.1 | .NET Core 3.1 | .NET 5 |
---|---|---|---|
✔️ 8 | ❌ 2.1 | ✔️ 3.1 | ✔️ 5.0 |
✔️ 7 | ❌ 2.1 | ✔️ 3.1 | ✔️ 5.0 |
有关详细信息,请参阅在 CentOS 上安装 .NET。
CentOS 8 ✔️
.NET 5.0 在 CentOS 8 的默认包存储库中提供。
安装 SDK
.NET SDK 使你可以通过 .NET 开发应用。 如果安装 .NET SDK,则无需安装相应的运行时。 若要安装 .NET SDK,请运行以下命令:
sudo dnf install dotnet-sdk-5.0
安装运行时
通过 ASP.NET Core 运行时,可以运行使用 .NET 开发且未提供运行时的应用。 以下命令将安装 ASP.NET Core 运行时,这是与 .NET 最兼容的运行时。 在终端中,运行以下命令:
sudo dnf install aspnetcore-runtime-5.0
作为 ASP.NET Core 运行时的一种替代方法,你可以安装不包含 ASP.NET Core 支持的 .NET 运行时:将上一命令中的 aspnetcore-runtime-5.0 替换为 dotnet-runtime-5.0:
sudo dnf install dotnet-runtime-5.0
CentOS 7 ✔️
安装 .NET 之前,请运行以下命令,将 Microsoft 包签名密钥添加到受信任密钥列表,并添加 Microsoft 包存储库。 打开终端并运行以下命令:
sudo rpm -Uvh https://packages.microsoft.com/config/centos/7/packages-microsoft-prod.rpm
Install the SDK
sudo yum install dotnet-sdk-5.0
Install the runtime
sudo yum install aspnetcore-runtime-5.0
As an alternative to the ASP.NET Core Runtime, you can install the .NET Runtime, which doesn’t include ASP.NET Core support: replace aspnetcore-runtime-5.0 in the previous command with dotnet-runtime-5.0
sudo yum install dotnet-runtime-5.0
检查 SDK 版本
dotnet --list-sdks
检查运行时版本
dotnet --list-runtimes
防火墙
#查看服务状态
systemctl status firewalld
# 查看状态
firewall-cmd --state
# 开启
service firewalld start
# 重启
service firewalld restart
# 关闭
service firewalld stop
启动服务
这里按照教程的话只能访问localhost的5000端口,可以用*来支持局域网访问
# 启动.NET Core网站(要先 cd 到网站目录)
dotnet LinHomeCloud.dll --server.urls="http://*:5000"