上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 17 下一页
摘要: linux平台及windows平台mysql重启方法 Linux下重启MySQL的正确方法: 1、通过rpm包安装的MySQL service mysqld restart 2、从源码包安装的MySQL // linux关闭MySQL的命令 $mysql_dir/bin/mysqladmin -ur 阅读全文
posted @ 2020-07-05 21:37 augusite 阅读(19939) 评论(1) 推荐(1) 编辑
摘要: 以student(sid,sname,birthday,sex)的查看为例。 【方式一】:desc student; 语法:desc 表名; 用于查看表整体结构 【方式二】:describe student; 语法:describe 表名; 用于查看表整体结构; 【方式三】:show columns 阅读全文
posted @ 2020-07-05 20:25 augusite 阅读(2036) 评论(0) 推荐(0) 编辑
摘要: 方法一:利用ifconfig命令获取 1 这个方法可能是最容易想到,也是大家最常用的方法。完整命令如下: ifconfig -a|grep -o -e 'inet [0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}.[0-9]\{1,3\}'|grep -v "127.0. 阅读全文
posted @ 2020-07-03 17:00 augusite 阅读(2029) 评论(0) 推荐(0) 编辑
摘要: 查看tcp连接数状态netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}' 统计8080端口上有多少个TCP连接,命令:netstat –nat | grep 8080 | wc –lTCP连接中有多少个连接状态是ES 阅读全文
posted @ 2020-06-28 18:46 augusite 阅读(768) 评论(0) 推荐(0) 编辑
摘要: 1B=8bit:一个字节占8位1KB=1024B1MB=1024KB1GB=1024MB1TB=1024GB 阅读全文
posted @ 2020-05-29 09:27 augusite 阅读(2034) 评论(0) 推荐(0) 编辑
摘要: bond网卡绑定的时候,切换两个网卡 ifenslave -c bond0 eth0 阅读全文
posted @ 2020-05-22 11:33 augusite 阅读(134) 评论(0) 推荐(0) 编辑
摘要: The df and du commands provide different system information and I can not write to a partition that df says is 100% full. Which is correct and why doe 阅读全文
posted @ 2020-05-20 19:26 augusite 阅读(357) 评论(0) 推荐(0) 编辑
摘要: 环境 Red Hat Enterprise Linux (RHEL) all versions 问题 My partitions are arranged like this (example): Raw / (/dev/sda1) --/var (/dev/sda2) --/usr (/dev/s 阅读全文
posted @ 2020-05-20 19:23 augusite 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 环境 红帽企业Linux(RHEL)所有版本 问题 我的分区是这样排列的(示例): 生的 / (/dev/sda1) --/var (/dev/sda2) --/usr (/dev/sda3) --/backups (/dev/sda4) 我的根分区本身(/ dev / sda1)很小,几乎已满。 阅读全文
posted @ 2020-05-20 19:22 augusite 阅读(184) 评论(0) 推荐(0) 编辑
摘要: tcpdump -i bond0 -C 500 -w ./142_1710.cap tcpdump -nnvv -i eth0 host 192.168.1.100 -c 100 (抓对端的包,测试B到A的数据是否到达,应该在A端执行命令,host_ip是B的ip:192.168.1.100) /s 阅读全文
posted @ 2020-04-08 16:12 augusite 阅读(784) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 17 下一页