How to find which process uses some port in windows

How to find which process uses some port in windows netstat -ano | find ":8080" TCP 0.0.0.0:8080 0.0.0.0:0 LISTENING 26924 TCP [::]:8080 [::]:0 LISTENING 26924 At right column you can see the process ID.

January 9, 2016 · 1 min · Özkan Pakdil

jms jsp xa and non xa examples

sometime you may need to configure jms messaging queue and when you need that you will configure jndi too. writing a jsp to test them is a good idea. or you may just got find a huge ear project like 200mbs and you need to see if this jndi and jms still works there. you can use these jsps for those. in weblogic there is XA enabled jms. which uses JTA user-transactions. and in my case I needed to test both nonXA and XA enabled jmsses. ...

January 5, 2016 · 3 min · Özkan Pakdil

how to move iis from one windows to another

Last weekend I needed to move from one windows 2012 to another one. And I have a large website runs in IIS. Normally in IIS manager you can export with web deploy tool. But I hit the 4gb max size limit. And the dialog was saying use archivedir. Here is how you can do it. For backing up whole sites from your IIS msdeploy -verb:sync -dest:archivedir=c:\site1archive,encryptPassword=password -source=webserver The sitearchive1 directory should have been created before and you can change the password. ...

November 30, 2015 · 1 min · Özkan Pakdil

install macos in virtualbox in ubuntu

I am not a fan of apple products but I wanted to try qt in mac. so I look for how can I install the macos in ubuntu virtualbox. there are some info in hackintosh site and some videos and documents. first of all I tried yosemite but it did not start properly in virtualbox then I look for which one is the latest macos version and it is el capitain. ...

November 22, 2015 · 2 min · Özkan Pakdil

adding jars to maven pom

normally you dont need this but sometime you may need to work with some special products like weblogic. and you may just need to add a dependincy from already installed weblogic. <dependency> <groupId>weblogic</groupId> <artifactId>weblogic</artifactId> <version>1</version> <scope>system</scope> <systemPath>C:\wl12\wlserver\modules\features\weblogic.server.merged.jar</systemPath> </dependency> this is working in windows as you guess :)

November 1, 2015 · 1 min · Özkan Pakdil