摘要:
postgresql.conf的修改 将 #listen_addresses = 'localhost' 前的#号去掉,然后将后面的localhost改为*,然后将 #port = 5432 前的#去掉,最后再将 #password_encryption = md5 前面的#号去掉 对pg_hba. 阅读全文
摘要:
Python,pymssql,executemany性能 阅读全文
摘要:
一、url映射 1、为什么回去urls.py文件中找映射? 在‘settings.py’文件中配置了‘ROOT_URLCONF’为‘urls.py’.所有的django回去urls.py中寻找。 2、在“urls.py”中我们所有的映射,都应该放在变量"urlpatterns"中。 3、所有的映射不 阅读全文
摘要:
背景 每次登录需要输入复杂的密码,而且不停的有人在尝试登录root账户。感觉心慌慌,所以不得不设置更加安全的登录方式。 配置SSH无密码登录需要4步 1. 准备工作 确认本机sshd的配置文件(需要root权限) 1)修改以下内容 RSAAuthentication yes #设置开启使用RSA算法 阅读全文
摘要:
Linux系统CentOS 1、安装依赖组件 2、下载Python3.6并解压 3、配置安装路径 如果遇到:configure: error: no acceptable C compiler found in $PATH。需要安装gcc 3、编译安装 make altinstall与make in 阅读全文
摘要:
参考链接 https://docs.microsoft.com/zh-cn/sql/linux/quickstart-install-connect-red-hat?view=sql-server-2017 我的Linux环境是CentOS. 1、下载 Microsoft SQL Server Re 阅读全文
摘要:
安装pymssql,不依赖yum安装 freedts 阅读全文
摘要:
public Boolean ValidateDomainUser(string Domain, string UserName, string Password) { DirectoryEntry entry = new DirectoryEntry(Domain, UserName, Password); t... 阅读全文
摘要:
protected override bool ProcessCmdKey(ref Message msg, Keys keyData) { if (keyData == Keys.F2) { this.OnKeyPress(new KeyPressEventArgs('r')); return t 阅读全文
摘要:
public void DataTabletoExcel(DataTable dt, string path) { StreamWriter sw = new StreamWriter(path, false, Encoding.GetEncoding("gb2312")); StringBuild 阅读全文