Chinaunix首页 | 论坛 | 博客
  • 博客访问: 8139257
  • 博文数量: 594
  • 博客积分: 13065
  • 博客等级: 上将
  • 技术积分: 10324
  • 用 户 组: 普通用户
  • 注册时间: 2008-03-26 16:44
个人简介

推荐: blog.csdn.net/aquester https://github.com/eyjian https://www.cnblogs.com/aquester http://blog.chinaunix.net/uid/20682147.html

文章分类

全部博文(594)

分类: 架构设计与优化

2013-06-21 23:03:09

给主人留下些什么吧!~~

Aquester2018-01-12 19:21:39

date --date=@$((`date +%s`-86400)) \"+%Y-%m-%d\"

Aquester2017-12-21 10:02:01

Aquester:一条命令取机器IP地址,不同Linux稍有不同:
netstat -ie|awk /broadcas/\'{print $2}\'
netstat -ie|awk -F \'[ :]+\' /cas/\'{print $4}\'
netstat -ie|awk -F \'[ :]+\' /cas/\'{print $3}\'

printf \"1 2,3\\t4;5|6\"|awk -F[\\|\\;,\\ \\\\t] \'{print $1,$2,$3,$4,$5,$6}\'

回复 | 举报

Aquester2017-08-25 15:35:26

一条命令取机器IP地址,不同Linux稍有不同:
netstat -ie|awk /broadcas/\'{print $2}\'
netstat -ie|awk -F \'[ :]+\' /cas/\'{print $4}\'
netstat -ie|awk -F \'[ :]+\' /cas/\'{print $3}\'

Aquester2017-08-17 16:01:12

thrift-0.9.3编译和0.9.0稍不同,标准方式指定openssl:
./configure --prefix=/usr/local/thrift-0.9.3 CPPFLAGS=\"-fPIC\" LDFLAGS=\"-fPIC\" --with-libevent=/usr/local/libevent --with-boost=/usr/local/boost --with-openssl=/usr/local/openssl --enable-tutorial=no --enable-tests=no --enable-coverage=no --with-cpp=yes --with-java=yes --with-php=yes --with-ruby=no --with-python=no --with-erlang=no --with-csharp=no --with-qt4=no --with-qt5=no --with-c_glib=no --with-perl=no --with-haskell=no

Aquester2017-07-17 17:20:59

在iptables的INPUT链的第一行插入一条规则(可访问其它机器的80端口):
iptables -I INPUT 1 -p tcp --sport 80 -j ACCEPT

在iptables的INPUT链尾追加一条规则(可访问其它机器的80端口):
iptables -A INPUT -p tcp --sport 80 -j ACCEPT