admin on August 12th, 2009

So, a friend of mine needed to test an email (SMTP) mail server and was writing something to do this in java when I mentioned that it could be tested via telnet.
Here are some of the commands that I’ve used previously:

Telnet to the mail server on the correct port (by default port 25) e.g. telnet [...]

Continue reading about Testing SMTP from the command line

admin on March 13th, 2009

If you’re using NAT on your virtual machines, you can make the guest O/S services accessible from the host O/S by doing port forwarding. Obviously, this means that the guest O/S can be accessed by anything on the network which may be good or bad depending on your environment.
Anyway, here’s the excerpt from the VirtualBox [...]

Continue reading about Adding port forwarding in VirtualBox

admin on September 26th, 2008

File
Service
What
Parameter
Port
New Port

deploy/http-invoker.sar/META-INF/jboss-service.xml
Tomcat

InvokerURLSuffix
8080
11080

deploy/jboss-ws4ee.sar/META-INF/jboss-service.xml
Tomcat

WebServicePort
8080
11080

WebServiceSecurePort
8443
11443

deploy/jbossweb-tomcat55.sar/server.xml
Tomcat
HTTP
port
8080
11080

HTTP
redirectPort
8443
11443

AJP
port
8009
11009

SSL
port
8443
11443

conf/jboss-service.xml
JBoss
WebService
Port
8080
11080

Naming
Port
1099
11099

Naming
RmiPort
1098
11098

invoker,type=jrmp
RMIObjectPort
4444
14444

invoker,type=pooled
ServerBindPort
4445
14445

deploy/jms/uil2-service.xml
JMS

ServerBindPort
1093
11093

deploy/hsqldb-ds.xml
HSQLDB
Hypersonic
Port
1701
11701

deploy/cache-invalidation-service.xml

ProviderUrl
1099
11099

This is an excerpt from the page here: http://www.thedance.net/~roth/TECHBLOG/jbossports.html

Continue reading about Jboss Ports