Loading

05 2019 档案

摘要: 阅读全文
posted @ 2019-05-30 13:34 wswind 阅读(222) 评论(0) 推荐(0) 编辑
摘要:简单说明 powershell对于脚本的执行有着严格的安全限制 Get-ExecutionPolicy -List #查看当前的执行策略 Set-ExecutionPolicy -Scope CurrentUser RemoteSigned #设置执行策略为要求远程脚本签名,范围为当前用户 策略 P 阅读全文
posted @ 2019-05-23 13:06 wswind 阅读(16958) 评论(1) 推荐(2) 编辑
摘要:vsftpd是linux下常用的ftp服务软件,配置起来不复杂。 ftp本身密码是明文传输的,如果需要安全,建议直接使用sftp,通过winscp等工具访问服务器。sftp只要能访问ssh就能使用,无需额外配置。 匿名访问 vsftp配置失败往往是由于权限问题,导致出现550 Failed to o 阅读全文
posted @ 2019-05-16 16:39 wswind 阅读(4752) 评论(0) 推荐(0) 编辑
摘要:转自Github/Powershell Bash PowerShell Description ls dir, Get-ChildItem List files and folders tree dir -Recurse, Get-ChildItem -Recurse List all files 阅读全文
posted @ 2019-05-15 20:25 wswind 阅读(549) 评论(0) 推荐(0) 编辑
摘要:网络配置 网络模式 Host-only Internal Bridged NAT 之间的区别 https://www.virtualbox.org/manual/ch06.html virtualbox 各网络连接方式的访问性如上图所示 vmware和virtualbox的nat网络模式有个很大的区 阅读全文
posted @ 2019-05-08 16:33 wswind 阅读(607) 评论(0) 推荐(0) 编辑
摘要:最近遇到了一个很奇葩的问题,我编写了一个.net core程序读取多个数据库数据源,进行数据同步处理。该程序在windows环境下运行完全正常,但在linux环境下运行报异常,提示 System.Data.SqlClient.SqlException: Connection Timeout Expi 阅读全文
posted @ 2019-05-05 21:31 wswind 阅读(1708) 评论(0) 推荐(1) 编辑
摘要: 阅读全文
posted @ 2019-05-05 16:37 wswind 阅读(287) 评论(0) 推荐(0) 编辑