
运维
文章平均质量分 63
神男鲁班
这个作者很懒,什么都没留下…
展开
-
Liunx常用命令速查
linux常用命令速查,对于新手常看看混个脸熟原创 2022-07-25 10:25:16 · 423 阅读 · 0 评论 -
tcping检查服务器端口是否开放
使用Windows下的tcping命令工具来帮助我们查看指定的端口是否是通的。下载地址:https://elifulkerson.com/projects/tcping.php把下载好的tcping.exe放到电脑的C盘>Windows>System32 下面。直接打开CMD窗口,输入命令:tcping 指定的IP或者域名 端口号 。输入完回车就可以查看这个IP的端口是否是通着的。例如:tcping 192.168.33.126 8081...原创 2021-06-22 19:22:13 · 1040 阅读 · 0 评论 -
MySql查看数据库及表容量大小并排序
查看所有数据库容量大小selecttable_schema as '数据库',sum(table_rows) as '记录数',sum(truncate(data_length/1024/1024, 2)) as '数据容量(MB)',sum(truncate(index_length/1024/1024, 2)) as '索引容量(MB)'from information_schema.tablesgroup by table_schemaorder by sum(data_lengt.原创 2020-08-08 02:02:17 · 3334 阅读 · 0 评论 -
Centos用speedtest.py测试服务器(国外)上传下载速度
github地址https://github.com/sivel/speedtest-cli下载speedtest.py wget https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py加执行权限chmod 755 speedtest.py执行脚本./speedtest.pyRetrieving speedtest.net configuration...Testing from New Wo原创 2020-05-15 21:27:15 · 2530 阅读 · 0 评论 -
命令行下查看出口IP(你上网时暴露在公网上的IP地址)
你想知道你的公网IP地址是多少,通常的做法是去百度输入IP就会显示你的公网IP地址和IP归属地,但我今天遇到一个问题:命令下如何查看电脑的公网IP?以下分享解决这个问题的方法。http://www.cip.cc/# curl cip.cc-------------------------------------------IP : 115.148.41.67地址 : 中国 江西 ...原创 2019-06-18 17:20:49 · 71998 阅读 · 3 评论 -
CentOS 7.0 防火墙查看、启动、关闭等常用管理命令
CentOS 7.0默认使用的是firewall作为防火墙本文只针对CentOS7.0 以上版本,其他低级版本默认使用的是iptables来管理1、firewalld的基本使用启动: systemctl start firewalld关闭: systemctl stop firewalld查看状态: systemctl status firewalld开机禁用 : systemctl ...原创 2019-09-19 12:18:08 · 407 阅读 · 0 评论