博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
remote connect openshift mysql
阅读量:4943 次
发布时间:2019-06-11

本文共 871 字,大约阅读时间需要 2 分钟。

再虚拟机内 rhc port-forward <app-name>

 

此时,可以在本机 访问 127.0.0.1:8080  登陆 网页, 3306连接sql

 

https://unix.stackexchange.com/questions/111433/iptables-redirect-outside-requests-to-127-0-0-1

https://serverfault.com/questions/551361/redirect-incoming-packets-to-loopback/702685

 

按上述将

sysctl -w net.ipv4.conf.eth0.route_localnet=1 然后 http://forums.justlinux.com/showthread.php?136144-SOLVED-hosts-file-redirecting-a-outgoing-ip-address-to-localhost

sudo iptables -t nat -A PREROUTING -d 192.168.252.30 -j DNAT --to-destination 127.0.0.1

sudo iptables -t nat -A OUTPUT -d 192.168.252.130 -j DNAT --to-destination 127.0.0.1

 

发现  可以在虚拟机内  用  虚拟机的eth0 的ip 地址:8080  访问了,,但主机上仍然不行    http://192.168.252.130:8080/

 

尝试 

http://www.linuxidc.com/Linux/2012-06/63520.htm

iptables -t nat -A PREROUTING -p tcp --dport 8080 -j DNAT --to-destination 127.0.0.1:8080

 

转载于:https://www.cnblogs.com/crazytao/p/7231641.html

你可能感兴趣的文章
Kubernetes(k8s)底层网络原理刨析
查看>>
SQL SERVER占用CPU过高排查和优化
查看>>
质因数分解(0)<P2012_1>
查看>>
redis系列(一):安装配置
查看>>
03 Python爬虫之Requests网络爬取实战
查看>>
在verilog中调用VHDL模块
查看>>
python学习:删除空白
查看>>
站立会议五
查看>>
团队个人冲刺第七天
查看>>
服务器端脚本和客户端脚本
查看>>
面部特征点定位概述及最近研究进展
查看>>
函数返回值是否使用引用类型的问题:理解引用、返回值
查看>>
青橙 A1280. 最长双回文串
查看>>
BZOJ 3685 普通van Emde Boas树 权值线段树(zkw)
查看>>
设计模式学习
查看>>
iOS的缓存路径
查看>>
String类中的常用方法
查看>>
windows phone 8.0 的网络图片异步加载方案
查看>>
gradle问题 cordova
查看>>
【转】Hbase之shell命令的使用
查看>>