Book Image

ADempiere 3.6 Cookbook

Book Image

ADempiere 3.6 Cookbook

Overview of this book

Table of Contents (16 chapters)
ADempiere 3.6 Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface

Installing ADempiere


Now that we have created the installers in the previous recipe, here we will make use of it to install an instance of ADempiere for our use. This recipe describes the steps involved in installing and setting up the ADempiere instance to make it usable.

Getting ready

  1. 1. Create a new database in PostgreSQL by name, say, adempiere360.

  2. 2. Add the adempiere user in the PostgreSQL database with adempiere as the password.

  3. 3. Stop and restart PostgreSQL.

  4. 4. Copy the<ADEMPIERE_SVN>\ tags\adempiere360lts \adempiere\Adempiere folder and its content to C:\. Now, you will have the C:\Adempiere folder.

  5. 5. Set the environment variable ADEMPIERE_HOME to C:\Adempiere.

How to do it...

  1. 1. Open a command prompt by selecting Start Button | Run | Open and enter cmd.

  2. 2. Change the directory to<ADEMPIERE_HOME>\data.

  3. 3. Run the following commands to set up the ADempiere schema:

    psql -U adempiere -d adempiere360 -c "drop schema sqlj cascade"
    psql -U adempiere -d adempiere360 -f Adempiere_pg.dmp >> dump_errors.log.
    
  4. When prompted, enter adempiere as the password.

  1. 4. Change the directory to<ADEMPIERE_HOME>.

  2. 5. Run RUN_setup.bat. This will bring up a window to enter various details.

  3. 6. Enter the valid values.

Database Server

localhost/127.0.0.1

Database Type

postgresql

Database Name

adempieredb

Database User

adempiere

Database Password

adempiere

System Password

<your PostgreSQL database admin user password>

  1. 7. Click on the Test button. First time setup will pop up the Key Store Dialog. Enter the relevant details, as shown in the following screenshot, and click on the tick button:

  1. 8. Click on the Test button and verify that all the tests have been passed (a tick mark appear next to the fields, as shown in the following screen shot):

  1. 9. Click on the Save button to save the settings.

  2. 10. Accept the license term, when prompted. This will create an Adempiere.properties file in the <ADEMPIERE_HOME> folder.

  3. 11. When setup is complete, change directory to <ADEMPIERE_HOME>.

  4. 12. Run RUN_Adempiere.bat. This will start the client version of ADempiere and will show you the following login screen.

13. Click on the button, which is on the right-hand side of the Server field, and verify that the database connection details is correct. Change the settings, if needed, and click on the Test Database button to make sure that the cross icon changes to a tick icon, as shown in the following screen shot:

  1. 14. If you want to run the server version of ADempiere, then change the directory to <ADEMPIERE_HOME>\utils and run RUN_Server2.bat. This will deploy ADempiere in JBoss, which is distributed along with it, and start the JBoss server. After the server has been started, you may verify your ADempiere installation by accessing the following URL from the browser of your choice —http://localhost:8080/webui—8080 is the default JBoss port. If it is different in your case, replace 8080 with your JBoss' port number. This needs to be done to ensure that the port that you are using for your JBoss server instance is free; otherwise the server will not run.

    To stop the server, you shall run RUN_Server2Stop.bat.

How it works...

First, we create the database and import the ADempiere data dump using steps 1 through to 3. In steps 4 through to 10, we complete the initial setup of our ADempiere instance with details such as database detail, mail server detail, and so on, so that it is ready to run. Steps 11 through to 13 helps us to run the desktop as the well as web version of ADempiere.

There's more...

Alternatively, to import ADempiere schema and the initial (GardenWorld) data, you may go to the<ADEMPIERE_HOME>\utils folder and run the RUN_ImportAdempiere.bat file.

See also

  • Creating installer from the source code