Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If you are wanting to evaluate OFBiz then the easiest solution is to download and run it on your local machine .

 

Convert this to be a generic How To and include a link to it

 

The main steps for installing OFBiz locally are as follows:

...

then

...

To do this you can run a command like this one depending on the last stable version

Code Block
$ svn co http://svn.apache.org/repos/asf/ofbiz/branches/release.ofbiz13.07 ofbiz.13.07

...

please follow the following link;

How to Install the OFBiz demo

 

Warning
titleGradle

You might need to use Gradle instead of Ant in newer versions, please then refer to the README.MD file at OFBiz folder root

 

  1. OFBiz comes with Apache Ant included and Ant is used to build OFBiz.
  2. To build OFBiz navigate into the ofbiz directory and then run the following command

    Code Block
    $ ./ant load-demo
    Info
    NOTE: This will build OFBiz using the version of Apache Ant that is included. It will also load the demo data that will help you understand OFBiz by seeing some sample transactions and reports.

...

To start OFBiz, navigate into the ofbiz directory and then run the following command

Code Block
$ ./ant start

...

To log into OFBiz and its backend applications you will need to open a browser and enter the following URL

Code Block
https://localhost:8443/accounting/control/main

Once the login screen appears

Login using the user 'admin' with the password 'ofbiz'

Info
NOTE: All the parties setup with the demo data have the default password 'ofbiz' so you can also login as 'DemoCustomer', 'DemoSupplier' or 'DemoEmployee' etc

...

To log into the OFBiz E-Commerce Webstore you will need to open a browser and enter the following URL

Code Block
http://localhost:8080/ecommerce/control/main
Info
NOTE: You can test the webstore features including shopping cart, blog, newsletter subscriptions, promotions and also buy products using the DemoCustomer profle (User Id = DemoCustomer, password = 'ofbiz').

...

To stop OFBiz navigate into the ofbiz directory and enter the following command

...

General Setup

Parties

In OFBiz there is the concept of a party. A party can be an individual person or it can be a group (e.g. an organisation). The party manager application allows you to create both individuals and groups. A party is also associated with a role, e.g. SUPPLIER, CUSTOMER or EMPLOYEE. The roles are used to help OFBiz manage how the party will interact with the OFBiz applications. A party can have multiple roles.

...