WIN7 之前能远程桌面连接到服务器,某次不小心打补丁后,连接失败, 并提示:身份验证错误,要求的函数不受支持,如下: 打开组策略编辑器,按照如下操作 大部分情况都能解决,对于WIN10仍然适用.
由于服务器处理SSL会耗费不少性能,如果采用F5作为后端服务器的负载调度器,而F5支持将HTTPS协议, 并支持将其转换为HTTP.从而减轻后端服务器压力。 1. 上传网站的https证书至F5,其结果如下所示 2. 编辑本地流量,配置中,SSL的client配置 3. 编辑 Virtual Servers配置 在SSL Profile(Client)中添加刚才配置的profile 配置生效后测试效果,最后发现,访问客户请求和F5之间的数据使用HTTPS传输, 而F5和后端服务器之间的数据采用HTTP传输。这里的过程仅仅是在导入HTTPS证书后, 编写SSL CLIENT配置,并将此配置应用在Virtual Servers; 而F5的健康检查,VLAN , 路由,server pools, virtual…
1. How to remove ^M in a shell script solution: sed -i ‘s/^M//g’ script.sh (input “^M” by Ctrl+v, Ctrl+m) 2.crontab输出结果控制 问题: 若在root用户下可执行脚本,而定时任务不执行,则需要检查环境变量。 /var/spool/clientmqueue目录占用空间超过100G 原因:cron中执行的程序有输出内容,输出内容会以邮件形式发给cron的用户,…
1. In default situation, SVN client will save authentication when checkout If you chose the “Save authentication” and click ok, the following checkout in same…
As requirement of project, I configured samba service in internal network, sharing a dictionary to clients. but some colleagues feedback that they can’t access sharing…
Default output formate of oracle is often disorder,and it’s not convenient to check. The following 3 methods can be used. 1,set the display length of…
we offen encounter the error that insufficient permission when run some problem or need the permission of administrator in WIN10 and WIN2012 So we can modify compatibility…
1: excute command SET PASSWORD MySQL -u root mysql> SET PASSWORD FOR ‘root’@’localhost’ = PASSWORD(‘newpass’); 2:mysqladmin mysqladmin -u root password “newpass” You can excute…