分类: Linux

6 篇文章

AWS GoogleCloud 密钥访问设置成密码登录
修改密码 sudo passwd root 设置完成后,切换root用户 su root 编辑sshd_config文件 vim /etc/ssh/sshd_config 找到下面两个选项,然后修改为yes PasswordAuthentication yes PermitRootLogin yes 保存修改后,重启ssh服务 service ss…
Linux服务器测速外网速度
教程使用SpeedTest进行测速(结果仅供参考)  GitHubsivel/speedtest-cli   直接下载文件赋权执行测速 使用wget命令下载执行文件 wget -O speedtest-cli https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest…
thumbnail
SSH工具推荐
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…
Linux重启Tomcat脚本
重启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.…
Linux(Centos7.*)命令笔记
Centos搜索历史命令快捷键 Ctrl + Shift + R 文件与目录操作命令 命令解析cd /home进入 ‘/home’ 目录cd ..返回上一级目录cd ../..返回上两级目录cd -返回上次所在目录cp file1 file2将file1复制为file2cp -a dir1 dir2复制一个目录cp -a /tmp/dir1 .复制…