参考地址:https://www.ibm.com/docs/en/zos/3.1.0?topic=4-usedns-option 编辑/etc/ssh/sshd_config把UseDNS修改为no UseDNS no 重启ssh服务 /etc/init.d/sshd restart 或 service sshd restart
修改密码 sudo passwd root 设置完成后,切换root用户 su root 编辑sshd_config文件 vim /etc/ssh/sshd_config 找到下面两个选项,然后修改为yes PasswordAuthentication yes PermitRootLogin yes 保存修改后,重启ssh服务 service ss…
教程使用SpeedTest进行测速(结果仅供参考) GitHubsivel/speedtest-cli 直接下载文件赋权执行测速 使用wget命令下载执行文件 wget -O speedtest-cli https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest…
SSH工具推荐 Linux重启Tomcat脚本 Linux(Centos7.*)命令笔记
1丶XSHELL 官网地址:https://www.xshell.com/下载地址:https://www.xshell.com/zh/all-downloads/ 2丶FinalShell 官网地址:http://www.hostbuf.com/Windows版下载地址:http://www.hostbuf.com/downloads/final…
重启Tomcat脚本 #! /bin/bash #这里配置tomcat的根路径 tomcat_home=/usr/local/apache-tomcat-7.0.81 SHUTDOWN=$tomcat_home/bin/shutdown.sh START=$tomcat_home/bin/startup.sh echo "Use shutdown.…
Centos搜索历史命令快捷键 Ctrl + Shift + R 文件与目录操作命令 命令解析cd /home进入 ‘/home’ 目录cd ..返回上一级目录cd ../..返回上两级目录cd -返回上次所在目录cp file1 file2将file1复制为file2cp -a dir1 dir2复制一个目录cp -a /tmp/dir1 .复制…