.NetCore项目部署到IIS
.netcore 3.1 mvc项目部署到IIS1. 基础环境配置
安装 dotnet-sdk-3.1.101-win-x64.exe
安装 dotnet-hosting-3.1.1-win.exe
安装 aspnetcore-runtime-3.1.1-win-x64.exe
安装 vc_redi ...
Linux下GitLab的安装及使用
GitLab介绍
Git:是一种版本控制系统,是一个命令,是一种工具。Gitlib:是用于实现Git功能的开发库。Github:是一个基于Git实现的在线代码托管仓库,包含一个网站界面,向互联网开放。GitLab:是一个基于Git实现的在线代码仓库托管软件,你可以用gitlab自己搭建一个类似于Gi ...
Linux 目录区别
/目录 、/home目录 、~目录的区别/ :根目录cd /: 从任何用户执行该命令都会进入同一个目录,即所有用户共享,其下文件如图
/home :家目录(我觉得还不如叫用户列表目录)cd /home:会显示这台机器的用户,如图,所以我认为与其叫什么家目录,不如说是用户目录
~ ...
Linux 防火墙设置
常用命令查看防火墙状态:sudo systemctl status firewalld
或
firewall-cmd --state关闭防火墙命令:sudo systemctl stop firewalld
或
systemctl stop firewalld.service打开防火墙命令:sud ...
Linux 安装 ifconfig
CentOS 7 系统默认 没有安装 ifconfig 命令。如果直接运行 ifconfig 命令,则提示错误 :-bash: ifconfig: command not found.直接运行yum install ifconfig提示错误 No package ifconfig availabl ...
Jenkinx命令以及升级步骤
Jenkins 命令启动service jenkins start重启service jenkins restart停止service jenkins stop登录Jenkinshttp://localhost:8080/关闭Jenkinshttp://localhost:8080/exit 重启J ...
Markdown语法
一级标题
1. 斜体和粗体使用 * 和 ** 表示斜体和粗体。
示例:
这是 斜体,这是 粗体。
2. 分级标题使用 === 表示一级标题,使用 — 表示二级标题。
示例:
Code1234567这是一个一级标题============================这是一个二级标题------ ...
Git命令
git初始化设置设置用户名和密码
git config --global user.name "haojy_dev"
git config --global user.email "haojy11@163.com"
---
git config --local xxxxxxx
---
git c ...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in ...
dotnet core命令详解
dotnet core 命令详解dotnet --list-sdks 查看已安装的sdk版本dotnet --help 查看dotnet命令帮助dotnet --version 查看dotnet版本dotnet new --list 查看dotnet创建模板dotnet restore 还原包引用d ...