摘要:
#!/bin/bash#by Charon2Pluto#(linux)ML=`df |awk '{print $2,$NF}'|sort -n|tail -1|awk '{print $2}'` if [ "$ML" = "/ecapp" ]; then ML=/ecapp/softfi tar z 阅读全文
摘要:
规划: 网站网页目录:/web/www 域名:www.test1.com 论坛网页目录:/web/bbs URL:bbs.test1.com/bbs 网站管理程序:$CATALINA_HOME/wabapps URL:manager.test.com 允许访问地址:172.23.136.* conf 阅读全文
摘要:
假设www.ctool.top。ip:192.168.122.135 step 1 申请一个域名并做好DNS解析,或者在hosts文件做域名指向 #vim /etc/hosts www.ctool.top 192.168.122.135 step2 将index.html设置项目的默认首页,修改项目 阅读全文
摘要:
Kafka主要参数详解 一、相关参数配置 ############################ System ############################# #唯一标识在集群中的ID,要求是正数。 broker.id=0 #服务端口,默认9092 port=9092 #监听地址,不设 阅读全文
摘要:
[root@localhost sbin]# ./nginx -V nginx version: nginx/1.11.10 built by gcc 4.8.5 20150623 (Red Hat 4.8.5-28) (GCC) configure arguments: --prefix=/sof 阅读全文
摘要:
1.前提准备 防火墙,selinux,主机名解析,所有主机安装gcc [root@localhost ~]# vim /etc/hosts 192.168.122.135 redis_master 192.168.122.136 redis_slave01 192.168.122.137 redis 阅读全文
摘要:
# ps -ef | grep ttlsa | awk '{ print $2 }' | sudo xargs kill -9 阅读全文
摘要:
[root@elk3 ~]# telnet 192.168.122.135 22 Trying 192.168.122.135... 这意味着telnet 没有收到任何回应来建立连接。有两个可能的原因: 1 你和服务器之间有个路由器宕掉了。 2 防火墙拦截了你的请求。 为了排除第1 点,对服务器上进 阅读全文
摘要:
在Linux 上的 /etc/services 文件可以查看到更多关于保留端口的信息。 可以使用以下六种方法查看端口信息。 ss:可以用于转储套接字统计信息。 netstat:可以显示打开的套接字列表。 lsof:可以列出打开的文件。 nmap:是网络检测工具和端口扫描程序。 systemctl:是 阅读全文
摘要:
[4ajr@redis1 scripts]$ cat redismonitor.sh #!/bin/bash #想要什么监控项再添加 rediscli="/soft/redis/bin/redis-cli" ip="172.30.210.178" port=6379 if [[ $# == 1 ]] 阅读全文