Install Openbravo Debian
#261 Installation fails on debian, reason not clear. Openbravo Because I did not read the most recent Openbravo_PostgreSQL_quick-start_installation_guide.
Contents • • • • • • • • • • • • • • • Introduction Openbravo has a native Ubuntu package available from Openbravo repository, which allows Ubuntu users to easily and quickly add the software to their Ubuntu server. This part of the document explains the installation of Openbravo ERP in Ubuntu Lucid Lynx 10.04. It applies to a new Openbravo ERP installation only, NOT an upgrade of an existing installation. Requirements Hardware • In order to install Openbravo it is necessary to have at least 1.5GB of RAM.
Software • Ubuntu version 10.04 (Lucid Lynx) • Ubuntu version 12.04 (Precise Pangolin). Using the Ubuntu Precise Pangolin 12.04 package is recommended for production systems, it is a (LTS) release Installation Command line installation using PPA Repository • Install python-software-properties package sudo apt-get install python-software-properties • Enable the openbravo-isv PPA Repository: sudo add-apt-repository ppa:openbravo-isv/ppa • Update the package tree and perform the install: $ sudo apt-get update $ sudo apt-get install openbravo-3 Note: sudo command will ask for the user password. Accessing Openbravo • Type in your web browser's address bar to log in into Openbravo. • Use the following credentials to access the application: • username: Openbravo • password: openbravo. NOTE: The username is Openbravo, with an uppercase O.
The password is openbravo, with a lowercase o. The system is case-sensitive, and you need to type both data elements correctly to access it. Tech Tools Lettering Stencil more.
Updating Ubuntu from 10.04 (Lucid) to 12.04 (Precise) Updating Ubuntu major version will disable third party repositories, this means that Ubuntu will be updated and the third party applications can be broken. So after the update you have to re-enable third party repositories and update this applications. In the step that ask to REBOOT, say that NOT (N + ENTER + x to get to the command line). Vista Copying Very Slow. Don't reboot till you finish the update of Openbravo and the post-steps.
Update of Openbravo The update of Ubuntu will disable the third party repos, including Openbravo one, now needed to re-enable. • Re-enable openbravo ppa: sudo add-apt-repository ppa:openbravo-isv/ppa • Update the package tree and perform the install: sudo apt-get update sudo apt-get install openbravo-3 Post-steps • After update ubuntu package you can reboot: sudo reboot. Next steps only apply to EC2. The update from lucid to precise will update the kernel and the devices names will change from a format /dev/sd to /dev/xvd, the most common side effect of this it is that probably in the next boot you lost the swap and the /mnt. Option 1: EC2 /dev/xvd manual fix In order to fix this first check that effectively you have this change: ls /dev/sd* ls /dev/xvd* If you have this change you need to update your fstab file: • First create a backup sudo cp /etc/fstab /etc/fstab.backup • Edit /etc/fstab and change /dev/sd entries with /dev/xvd. For example: /dev/sda to /dev/xvda.
On this page • • • • • • • • • • • • • How To Install The Openbravo ERP On Debian Etch Version 1.0 Author: Oliver Meyer This document describes how to set up Openbravo ERP (enterprise management system) on Debian Etch. Taken from the Openbravo page: 'Openbravo is an open source ERP solution designed specifically for the SME (small to midsize firm). Developed in a web based environment, it includes many robust functionalities which are considered part of the extended ERP: procurement and warehouse management, project and service management, production management, and financial management.' I can't list all the features here - please have a look at This howto is a practical guide without any warranty - it doesn't cover the theoretical backgrounds. There are many ways to set up such a system - this is the way I chose. 1 Preparation 1.1 Debian Backports This repository provides Sun's JDK that we need for this setup.
Vi /etc/apt/sources.list Add the following lines. # Debian Backports deb etch-backports main contrib non-free Afterwards refresh apt. Apt-get update.
And import the gpg-key. Apt-get install debian-backports-keyring 1.2 Needed Packages Now let's install and configure the needed packages. 1.2.1 PostgreSQL Install it via: apt-get install postgresql-8.2 Afterwards we have to set the PostgreSQL admin password. Sed -i 's/ident sameuser$/trust/' /etc/postgresql/8.2/main/pg_hba.conf /etc/init.d/postgresql-8.2 restart Open a PostgreSQL shell. Psql -U postgres alter role postgres with password '%new_PostgreSQL_admin_passowrd%'; q sed -i 's/trust$/md5/' /etc/postgresql/8.2/main/pg_hba.conf /etc/init.d/postgresql-8.2 reload 1.2.2 Java JDK Install it via: apt-get install sun-java6-jdk Afterwards make it systemwide available. Update-java-alternatives -s java-6-sun echo 'JAVA_HOME='/usr/lib/jvm/java-6-sun' tee -a /etc/environment After that log out and in again to take the changes effect.