autoDevops,CI,CD
 
0
有个CIS软件的MSI安装包,安装时没有提示安装目录,想修改成别的目录位置,发出来给大家参考。Filename: "{app}/msiexec.exe";Parameters: "/i""{app}/ArcGIS/setup.msi""/qb REBOOT=SUPPRESS INSTALLDIR=""{app}/ArcGIS/""";安装测试了一下@echo offstart "" "CIS_2020.msi" INSTALLDIR="D:\Program Files\CIS" /quiet /passive /norestartpause软件包会自行安装到对应目录。 
centos6的系统关于openssh版本太低只有openssh5.3,需要升级到最新版openssh8.1p1,为了方便,这个制作了一个RPM版本的安装包,可以在centos6、RHEL6系统安装,确认正常。安装方法,先下载附件中的openssh8.1p1的RPM包,执行下列命令#:  yum -y install gcc gcc-c++ zlib zlib-devel openssl openssl-devel pam-devel pam-devel rpm-build pam-devel openssl pam libedit pam-devel initscripts libXt-devel imake gtk2-devel unzip 安装依赖包,不是所有包都需要。#:  rpm -e `rpm -qa |grep openssh` --nodeps删除旧版openssh软件包。#:  rpm -ivh *.rpm    安装所有新版openssh8.1p1安装包。openssh8.1p1_x86_64 RPM安装包当然还有一个很重要的事情,安装好后,请修改配置文件启用root账号。如果在升级时使用ssh远程,那么重启sshd服务会掉线,导致ssh程序没有重启完成,所需要可以先安装好 screen程序,然后把下面的命令写到脚本里面,再执行新写的脚本文件,这样就可以正常重启ssh,重启后,也可以正常连接ssh:#: /etc/init.d/sshd stop     停止服务#:/etc/init.d/sshd restart   测试重启服务。最好远程测...
笔记本安装Win10/windows server2016后,使用中发现电脑死机后,开始菜单打不开,点开始菜单卡住的解决方法打开 事件查看器, 查看windows 应用日志,有以下几个报错:1,错误应用程序名称: SearchUI.exe,版本: 10.0.14393.2430,时间戳: 0x5b691c85错误模块名称: KERNELBASE.dll,版本: 10.0.14393.3269,时间戳: 0x5d9133fb异常代码: 0x00000004错误偏移量: 0x0000000000034c48错误进程 ID: 0x2c08错误应用程序启动时间: 0x01d594581a9dc8e8错误应用程序路径: C:\Windows\SystemApps\Microsoft.Windows.Cortana_cw5n1h2txyewy\SearchUI.exe错误模块路径: C:\Windows\System32\KERNELBASE.dll报告 ID: a9a24f4c-c847-4a1f-91a1-11584661050c错误程序包全名: Microsoft.Windows.Cortana_1.7.0.14393_neutral_neutral_cw5n1h2txyewy错误程序包相对应用程序 ID: CortanaUI2,激活应用 Microsoft.Windows.ShellExperienceHost_cw5n1h2txyewy!App 失败,错误: 远程过程调用失败。 请查看 Microsoft-Windows-TWinUI/运行日志以了解其他信息。3,错误存储段 2000106270865921514,类型 5事件名称: MoAppCrash响应: 不可用Cab Id: 0问题签名:P1: Microsoft.Windows.ShellExperience...
您所在的组无权查看该日志
解决ssh登录linux速度慢的问题(以centos7为例) 解决步骤:先备份/etc/ssh/sshd_config,备份命令为cp /etc/ssh/sshd_config /etc/ssh/sshd_config.bak1.su                                    (以root用户登录)2.vi /etc/ssh/sshd_config      (编辑配置文件)3.输入 / ,查找GSSAPIAuthentication 赋值为no4.输入 /,查找UseDNS,赋值为 no(该项默认不启用的,要把前面的#删除掉)5.最后输入!wq保存文件并退出6.重启systemctl restart sshdOpenSSH配置ssh_config中GSSAPIAuthentication 作用在ssh_config 配置文件中有个参数                 GSSAPIAuthentication  当这个参数开启( GSSAPIAuthentication  yes )的时候,通过SSH登陆服务器时候会有些会很慢,但有的服务器又不慢,这个问题是什么造成的 ??              ...
检查Centos6系统日志时,无意中发现一个半夜23点时执行su命令的日志。Sep  2 09:55:42 Web1 sshd[26868]: PAM adding faulty module: /lib64/security/pam_tally.soSep  2 09:55:52 Web1 sshd[26868]: pam_unix(sshd:session): session opened for user webuser by (uid=0)Sep  2 10:03:10 Web1 sshd[26868]: pam_unix(sshd:session): session closed for user webuserSep  2 23:05:38 Web1 su: PAM unable to dlopen(/lib64/security/pam_tally.so): /lib64/security/pam_tally.so: cannot open shared object file: No such file or directorySep  2 23:05:38 Web1 su: PAM adding faulty module: /lib64/security/pam_tally.soSep  3 10:45:24 Web1 sshd[978]: PAM unable to dlopen(/lib64/security/pam_tally.so): /lib64/security/pam_tally.so: cannot open shared object file: No such file or directorySep  3 10:45:24 Web1 sshd[978]: PAM adding faulty module: /lib64/security/pam_tally.soSep  3 10:45:34 Web1 sshd[978]: pam_unix(sshd:session): session opened for user webuser by (uid=0)这就很奇怪了,没人会...
centos6的系统关于openssh版本太低只有openssh5.3,需要升级到最新版openssh8.0p1,为了方便,这个制作了一个RPM版本的安装包,可以在centos6、RHEL6系统安装,确认正常。安装方法,先下载附件中的openssh8的RPM包,执行下列命令#:  yum -y install gcc gcc-c++ zlib zlib-devel openssl openssl-devel pam-devel pam-devel rpm-build pam-devel openssl pam libedit pam-devel initscripts libXt-devel imake gtk2-devel unzip 安装依赖包,不是所有包都需要。#:  rpm -e `rpm -qa |grep openssh` --nodeps删除旧版openssh软件包。#:  rpm -ivh *.rpm    安装所有新版openssh8安装包。openssh8安装包当然还有一个很重要的事情,安装好后,请修改配置文件启用root账号。最好启用sshd服务:#: /etc/init.d/sshd start     直接启动服务就行#:/etc/init.d/sshd restart   测试重启服务。最好远程测试下ssh是否正常登陆。
联想笔记本安装win2016,intel ac3165无线断网联想笔记本默认安装win10系统,由于台式机平时使用的是windows server 2008系统,使用win10很不方便,自带一堆软件,占用资源又高,所以换成了windows server 2016,就是触摸板无法使用,其它正常,由于只能使用wifi网络,所以hyper-v 虚拟机需要通过无线网卡作为网关上外网,就安装了win2016系统自带的 路由与远程访问 功能,配置好后,发现无线网路 每过一段时间就找不开网页,ping 外网的Ip,又是可以ping通,换DNS后,还是一样的问题,最后关闭 路由与远程访问  功能后,恢复正常,由于没时间测试,hyper-v虚拟机上网又只能搞ICS了。
How to Enable Wireless in Windows Server 2016?Enable Wireless Networking on Windows Server 2016 and Windows Server 2012 R2 The wireless network card is disabled in Windows Server. If you want to connect your server through WiFi, you need to enable Wireless Networking first. By default in Windows Server 2016, you are not able to browse the internet with an admin account. So all these limitations are for security. Enable Wireless in Windows Server 2016 With two methods you can enable Wireless in Windows Server. First by GUI using server manager and install it through Windows features. It’s really easy for all. But the command line is a sysadmin daily Windows Server configuration and maintenance tools.  Then enable Wireless using the command line in Windows Server 2016. Note: You can apply this article on all version of Windows Server 2008 to Windows Server 2016. I haven’t tested on Server Core, it must work well. 1. While you are login as admin on your Windows Server,...
针对PHP版本升级后出现PHP Warning: Illegal string offset错误的解决办法新项目使用的是ECSHOP的程序,用的PHP版本比较高,导致错误一片,普通错误写法修改下就可以解决,但针对PHP Warning: Illegal string offset,百度了几次都未解决, 最后添加一个判断解决问题,避开此错误  if(is_array($arrVar)){语句}本博客程序无故出现此问题,原始代码如下:$keywords=trim($_POST['keywords']);修改代码如下: if(is_array($arrVar)){ $keywords=trim($_POST['keywords']); }
    总共67页,当前第9页 | 页数:
  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
  15. 15
  16. 16
  17. 17
  18. 18
  19. 19