- 浏览: 190691 次
- 性别:
- 来自: 上海
文章分类
- 全部博客 (83)
- J2EE/Core Java (24)
- J2EE/Portal (2)
- J2EE/UI (4)
- J2EE/ATG (1)
- J2EE/Report (1)
- J2EE/Web Service/Rest API (2)
- Design Pattern (2)
- Arithmetic (4)
- Linux (12)
- Ruby&Rails (17)
- Database (5)
- J2EE/Payment (1)
- J2EE/JVM (1)
- Encryption/Decryption (3)
- J2EE/Multi Threading (4)
- SQL (1)
- https://community.teamviewer.com/t5/Knowledge-Base/Where-can-I-download-older-TeamViewer-versions-nbsp/ta-p/7729 (0)
最新评论
引用
In linux system. only root user can use the port small than 1024, so if you change tomcat port to 80 and start without root account, then you will see the following error:
java.net.BindException: Permission denied <null>
引用
The solution is to use iptables to map port 80 with the default port 8080
#map tomcat port:8080 to port:80 , so the external host can access tomcat via both 8080 and 80 iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8080 #let local application to access tomcat via port 80 iptables -t nat -I OUTPUT -p tcp -o lo --dport 80 -j REDIRECT --to-ports 8080 #save mapping, so after linux box reboot, still have these port mapping service iptables save #view existed port mapping iptables -t nat --line-numbers -n -L
发表评论
-
Linux SSH UsernamePasswordInteractive Login with Java ganymed-ssh2
2016-05-25 18:14 1185引用Ganymed SSH-2 for Java is a l ... -
Format XML in JAVA
2016-01-11 12:23 629public static String format ... -
HttpURLConnection下载文件
2015-08-07 11:25 832public class HttpDownloadUtilit ... -
Ehcache RMI Replicated Cluster(RMI集群)
2013-04-25 23:39 1098引用本文是ehcache RMI集群的例子,导入附件中的jav ... -
Integrete unitils for database(dao) testing
2013-02-01 18:39 1723引用Database testing Unit tests f ... -
JAXB入门
2012-10-16 11:59 821引用jaxb是一个读写xml的工具,还可以提供验证,不需要额外 ... -
Freemarker使用入门
2012-10-16 11:54 1055引用freemarker是一种模板标记工具,可以做页面静态化, ... -
perforce java api使用
2012-10-16 11:43 1288引用perforce是种版本管理软件,提供啦完整的java a ... -
XPath 入门
2012-10-16 11:29 912引用xpath可以快速定位获取XML文件中指定属性和值,jdk ... -
Java File Diff-diffutils
2012-09-27 17:35 75421. Maven Dependency <depende ... -
XSD 入门使用
2012-09-18 23:20 815<?xml version="1.0" ... -
nexus-2.1.1安装及使用入门
2012-08-13 22:52 14911. 安装 地址http://www.sonatype.org ... -
File Demo
2012-06-25 22:55 1356package org.springside.examples ... -
Java 访问sharepoint webservice(NTLM & SSL)
2012-06-12 09:47 3805引用遇到需要使用java访问微软的sharepoint的web ... -
Selenium Web Driver入门
2012-05-27 23:17 58861 What is Selenium? 引用Selenium ... -
HttpClient4.1.2 & HtmlUnit2.9 处理文件下载
2012-01-09 18:18 1065TestCode import java.io.Fi ... -
HttpClient4.1.2 & HtmlUnit2.9 NTLM 验证 和 Httpclient4.1.2 https/SSL
2012-01-09 18:13 16401. HttpClient4.1.2 & HtmlUn ... -
HttpClient4登陆ITeye
2012-01-08 23:33 1929import java.io.IOException; im ... -
Spring2集成测试
2011-08-25 22:21 797Spring2测试类继承层次 集成测试例子 public ... -
Learning EasyMock3.0 By Official Example
2011-08-24 16:48 1417Maven Installation+ add followi ...
相关推荐
"Linux 防火墙 Netfilter-iptables 扩展机制及应用研究" 本文主要研究了 Linux 防火墙 Netfilter-iptables 扩展机制及应用,旨在解决 Linux 防火墙的扩展性和维护性问题。论文首先分析了 Linux 2.4 内核的 ...
Linux78期-02-IPtables-netfileter简介.ev4a
Linux--防火墙iptables基本命令、常用端口的开放阻止删除.docx
linux-iptables-examples
Linux运维-52-Linux云计算-安全防御 - iptables 原理.mp4
【Apache Tomcat 10.0.13 在 Linux 上的安装与配置详解】 Apache Tomcat 是一个开源的 Java 应用服务器,主要用于部署和运行Servlet和JavaServer Pages(JSP)应用程序。在这个最新的版本10.0.13中,开发者引入了新...
rpm -ivh iptables-1.4.7-19.el6.x86_64.rpm or yum localinstall -y iptables-1.4.7-19.el6.x86_64.rpm 启动: service iptables start 停止: service iptables stop 重启 service iptables restart 基本防护...
Linux安全应用-iptables防火墙.pptx
LINUX教程之24-iptables防火墙简单使用
《Linux互联网技术》项目10Linux防火墙实现-iptables1.ppt
01_Linux安全应用-iptables防火墙(一)-v10.ppt
02_Linux安全应用-iptables防火墙(一)-v10.ppt
这里需要注意,iptables服务包(iptables-services)是必需的,因为它将iptables设置为系统服务,使得IPv4和IPv6的规则得以持久化。 安装完成后,可以通过`systemctl start/stop/restart/status iptables`或`...
linux-iptables linux-iptables
### Linux实战—2小时玩转iptables #### 一、概述 在《Linux实战—2小时玩转iptables》这篇文档中,作者旨在通过一系列简洁明了的教程帮助读者快速掌握iptables的基本用法及其在网络管理中的应用。iptables是Linux...
Netfilter-IPTables框架简介,Netfilter-IPTables框架简介,Netfilter-IPTables框架简介
在Linux世界中,掌握一些...通过阅读"Linux-use-skills.txt",你将找到更具体的指导和实例,加深对这些概念的理解。记住,Linux是一个开放的世界,它的强大在于你对它的掌握程度。祝你在Linux的学习旅程中一切顺利!
WARNING: bridge-nf-call-iptables is disabled WARNING: bridge-nf-call-ip6tables is disabled 2)解决方法: 修改系统文件是的机器bridge模式开启 设置机器开机启动的时候执行下面两条命令 编辑vim /etc/rc.d/rc...
- `iptables-save > iptables.conf`: 将当前iptables规则保存到文件中,以便后续恢复使用。 ### 总结 综上所述,这个iptables脚本通过集成CGI页面实现了动态自定义iptables规则的功能。用户可以方便地通过Web界面...