设置步骤:1,本地进入.ssh查看是否存在密钥对:xxx和xxx.pub命令:cd ~/.ssh2,如果不存在,使用ssh-keygen来创建命令:ssh-keygen -t rsa -C "youremail@youremail.com"例如:ssh-keygen -t rsa -C "wanwan5856@163.com"注解:Enter file in which to save the key 输入保存秘钥的文件 直接enter即可Enter passphr…
REST的定义与作用 在SharePoint 2010中,基本上有如下几种数据访问方式: 服务器端对象模型 LINQ to SharePoint Web Service 客户端对象模型 ADO.NET Data Service (REST协议) ADO.NET Data Service (强类型) REST是SharePoint中一种数据访问方式,这种方式只支持列表数据访问接口,位于_vti_bin目录下的的listdata.svc. REST的特点及原理 REST协议的一个特点,就是可以把我们…
在Chrome中以https访问自己搭建的gitlab站点时经常出现下面的错误: Attackers might be trying to steal your information from xxx.com (for example, passwords, messages, or credit cards). NET::ERR_CERT_AUTHORITY_INVALID xxx.com normally uses encryption to protect your informatio…
一.//连接方式访问数据库的主要步骤(利用DataReader对象实现数据库连接模式) 1.创建连接对象(连接字符串) SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["XXX"].ConnectionString); 2.创建命令对象(设置Command对象的几个属性值) SqlCommand scmd = new SqlCommand(); scmd.CommandText…
场景:本地服务器上,用“localhost”方式访问网站:在某网站集(Site Collection)下的子网站(Sub Site)中,点击网站权限菜单(Site permissions)等关于调用Layout下文件的情况,就出现“File not found”异常:配置网站web.config的CustomError为Off,出现“Unable to find the specified file.” 解决方式:不要用“localhost”,用“机器名”或者“IP”访问就没问题了,按道理…
首次远程安装 GlassFish 服务后,如果以远程 Web 方式访问其后台管理系统,会提示 Secure Admin must be enabled to access the DAS remotely 错误.管理系统的默认管理员账号为 admin,密码为空,但这时远程登录就会提示上面的错误,只有在 GlassFish 所在的服务器上以本地浏览器访问 http://locahost:4848 才能以默认空密码访问管理系统.那么如果 GlassFish 所在的服务器不具备远程图形界面访问的条件呢…