How to find out if JBOSS is installed on a machine (Mac)?

1

I need to install Jboss, but I don't remember whether I have already installed it. How do I find out?

Prostak

Posted 2011-12-22T22:14:28.583

Reputation: 337

Answers

2

for example in Terminal:

sudo find / -name jboss

will list all files/dirs starting with jboss

Alexei Vinogradov

Posted 2011-12-22T22:14:28.583

Reputation: 156

1I would propose to search for "jboss" (with quotes) - at least on Linux without '' these command finds only exact mach for string. – Lukasz Stelmach – 2011-12-23T14:34:40.410