摘要:
#region 验证密码格式 public static bool ValidatePwd(string pwd) { return System.Text.RegularExpressions.Regex.IsMatch(pwd, "^(?![a-zA-Z]+$)(?![A-Z0-9]+$)(?! 阅读全文
摘要:
public void Configure(IApplicationBuilder app, IWebHostEnvironment env, IHostApplicationLifetime hostApplicationLifetime) { hostApplicationLifetime.Ap 阅读全文
摘要:
https://blog.csdn.net/sumjob/article/details/103835877 阅读全文
摘要:
公式:astart <=bend && aend>=bstart 举例: //测试数据astart 1991-1 aend 1991-12 bstart 1992-1 bend 1992-12 阅读全文
摘要:
--创建链接服务器 exec sp_addlinkedserver '名称','','SQLOLEDB','远程服务器名或ip地址' exec sp_addlinkedsrvlogin '名称','false',null,'用户名','密码' 阅读全文
摘要:
1、官网地址 http://nginx.org/en/download.html 2、安装nginx yum -y install gcc gcc-c++ autoconf automake make yum -y install openssl openssl-develyum -y instal 阅读全文
摘要:
一、前言 官网地址:https://www.postgresql.org/download/linux/redhat/ 二、安装 # Install the repository RPM: sudo dnf install -y https://download.postgresql.org/pub 阅读全文
摘要:
一、安装问题 安装时,执行 dnf -qy module disable postgresql 报错: 二、解决方案 sudo dnf install wget 阅读全文
摘要:
1.修改MySQL配置 /etc/my.cnf vim /etc/my.cnf [mysqldump] user=xxx password=xxx 2.创建脚本 touch /var/www/wwwroot/dbbaks/项目名称_bak.shvim /var/www/wwwroot/dbbaks/ 阅读全文
摘要:
一、安装步骤 1、安装yum-utils yum install -y yum-utils 2、配置阿里源 yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo 3、 阅读全文