July 5, 2009 at 4:55 pm (Useful information, Windows)
Tags: change, disable, enable, explorer, IE, internet, internet options, programmatically, proxy, registry, script, server, vbs
Ok. You know the drill, you need to use the company’s proxy server at work and at home you don’t need a proxy server.(or you use another one)
Well, do you really want to open up IE and go into Tools->Internet Options->Connections->LAN Settings->Proxy Server to change the address or disable/enable it?
(You can actually open Internet Options from Control Panel without opening up IE, but anyway, it still is a long process.)
As everything useful is done in Registry in Windows, we again have some registry scripts.
Read the rest of this entry »
Leave a Comment
February 19, 2009 at 9:52 am (Oracle)
Tags: application server, port, server, tomcat
I just needed to do this, since Oracle 10g XE Web Interface also listens on port 8080.
After a quick lookaround in its folders, I found a way.
So here is how it is done:
Stop Tomcat.
Go to <Your Tomcat Directory>/conf/
Edit server.xml there.
There will be a Connector tag there.
<Connector port=”8082” protocol=”HTTP/1.1″
connectionTimeout=”20000″
redirectPort=”8443″ />
Change its port attribute to anything you like; in my case it is 8082 as you can see.
Restart Tomcat.
Leave a Comment