@xiaoyixy
2018-11-16T15:28:51.000000Z
字数 1887
阅读 1648
VPS
// 查看状态:
systemctl status sshd.service
// 启动服务:
systemctl start sshd.service
// 重启服务:
systemctl restart sshd.service
// 开机自启:
systemctl enable sshd.service
// 添加端口
firewall-cmd --zone=public --permanent --add-port=23233/tcp
firewall-cmd --zone=public --permanent --add-port=3306/tcp
firewall-cmd --zone=public --permanent --add-port=80/tcp
firewall-cmd --zone=public --permanent --add-port=443/tcp
firewall-cmd --zone=public --permanent --add-port=23333/tcp
// 关闭端口
firewall-cmd --zone= public --remove-port=xx/tcp --permanent
// 需要重启
service firewalld restart
// 查看所有打开的端口:
firewall-cmd --zone=public --list-ports
useradd ryougichan
passwd ryougichan
// 禁用 root 登陆
vi /etc/ssh/sshd_config
PermitRootLogin no
// 重启 sshd
service sshd restart
使用密钥验证登录
密钥登陆Linux服务器
MySQL
Installing MySQL on Linux
MySQL查看数据库相关信息
centos7 mariaDb5.5 升级到最新版本
Mariadb安装之后的各种设置
.NET Core
Get started with .NET in 10 minutes
将ASP.NET Core应用程序部署至生产环境中(CentOS7)
Getting Started with EF Core on ASP.NET Core with an Existing Database
ASP.NET Core MVC6+EntityFrameworkCore+MySql 最最最入门
How to Run a .NET Core MVC Site on AWS Linux Instance
Host ASP.NET Core on Linux with Nginx
.NET Core Repository 模式
Generic Repository Pattern in ASP.NET Core
ASP.NET Core: Generic Repository Pattern
Asp.Net Core + Dapper + Repository 模式 + TDD 学习笔记
Implementing the Repository and Unit of Work Patterns in ASP.NET Core
nginx
nginx: Linux packages
Install | NGINX
How To Install Nginx on CentOS 7
#启动nginx服务
systemctl start nginx.service
#停止开机自启动
systemctl disable nginx.service
#查看服务当前状态
systemctl status nginx.service
#重新启动服务
systemctl restart nginx.service
#查看所有已启动的服务
systemctl list-units --type=service
Let's Encrypt 泛域名证书
Let's Encrypt 泛域名证书
nginx服务器使用acme.sh申请letsencrypt泛域名证书
使用 acme.sh 给 Nginx 安装 Let’ s Encrypt 提供的免费 SSL 证书
注意
此网站无法提供安全连接 使用了不受支持的协议
的错误,可能是 DNS 服务商提供 CDN,例如 cloudflare dns 会为添加的解析记录默认启用 CDN 加速,关闭即可