casper
casper

Reputation: 472

Is it possible to install JBoss Fuse 6.3 on Linux (Ubuntu 16.04.1 LTS)?

I have gone through the JBoss FUSE guide in official guide but I could not see any details regarding capabilities of install FUSE in Linux server. Have any one try this before? I have not seen any document regarding this, Appropriate if some experienced person provide feedback about this.

Is it possible to install the FUSE in Linux server for example Ubuntu 16.04.1 LTS ? If it's possible is there any reference document guideline ?

Upvotes: 3

Views: 953

Answers (1)

Coder
Coder

Reputation: 2044

Yes it's possible to run the FUSE on linux without any issue. Only thing is it is required to install JDK and its better to have maven installed in your PC as well.(Note that path variable needed to be updated after install JDK and maven). If you haven't install please go through following guide lines.

01) Install JDK in linux

02) Install maven in linux

After you installed those two then you need to download the relevant zip file from JBoss Fuse official site. Then extract the zip file in to desired location. (This location can be any place you want to install in folder structure)

Open the command line and go to bin folder on extracted folder.

then Type following command and press enter

./fuse

As show on below image

enter image description here

Then you will see similar interface to below(Usual fuse loading interface ).

enter image description here

Since there is not much dificulties on this I don't think there will be any documentation regarding this. I believe this steps will help you to setup JBoss Fuse in linux environment.

Upvotes: 6

Related Questions