标签:rinetd
Rinetd是为在一个Unix和Linux操作系统中为重定向传输控制协议(TCP)连接的一个工具。Rinetd是单一过程的服务器,它处理任何数量的连接到在配置文件/etc/rinetd中指定的地址/端口对.[root@jw rinetd]# vim /etc/rinetd.conf
[root@jw rinetd]# cat !$
cat /etc/rinetd.conf
0.0.0.0 6379 111.111.111.111 6379
##说明一下(0.0.0.0表示本机绑定所有可用地址)
###将所有发往本机6379端口的请求转发到111.111.111.111的6379端口,即redis
logfile /var/log/rinetd.log ——日志目录
[root@jw rinetd]#
配置文件绑定格式
命令格式是
bindaddress bindport connectaddress connectport
绑定的地址 绑定的端口 连接的地址 连接的端口
[root@jw rinetd]# rinetd
[root@jw rinetd]# echo $?
0
[root@jw rinetd]# netstat -antup
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:6379 0.0.0.0:* LISTEN 3096/rinetd
tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 1025/rpcbind
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1092/sshd
tcp 0 52 192.168.3.2:22 192.168.3.100:1529 ESTABLISHED 1120/sshd
tcp 0 0 :::111 :::* LISTEN 1025/rpcbind
tcp 0 0 :::22 :::* LISTEN 1092/sshd
udp 0 0 0.0.0.0:111 0.0.0.0:* 1025/rpcbind
udp 0 0 0.0.0.0:776 0.0.0.0:* 1025/rpcbind
udp 0 0 0.0.0.0:68 0.0.0.0:* 955/dhclient
udp 0 0 :::111 :::* 1025/rpcbind
udp 0 0 :::776 :::* 1025/rpcbind
[root@jw rinetd]#
执行rinetd命令,可以看到已经启动了6379端口了。
停止rinetd命令
pkill rinetd
rinetd -c /etc/rinetd.conf ##启动转发
echo rinetd >>/etc/rc.local##添加到开机启动
如果你在阿里云买了一台redis,需要公网访问,可以参考使用rinetd
以下链接:https://help.aliyun.com/document_detail/43850.html
标签:rinetd
原文地址:http://blog.51cto.com/12185273/2106571