To complete installation, you must 1. Create a directory to store generated documents : mkdir /var/dolibarr 2. Change owner and group to the web server : chown apache:apache /var/dolibarr 3. Create the dolibarr database : mysql -u root -p < /usr/share/webapps/dolibarr/${PVR}/sqlscripts/mysql/${PVR}_create.sql 4. Create a user who can modify the dolibarr database by running this command in a mysql prompt (or use phpmyadmin) : GRANT SELECT , INSERT , UPDATE , DELETE ON \`dolibarr\` . * \\ TO ''@'localhost' IDENTIFIED BY '' WITH \\ MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0 ; Finally, point your browser to http://${VHOST_HOSTNAME}${VHOST_APPDIR} to run the dolibarr's internal installation. During this step, you will be asked about the and the of the dolibarr's mysql user created above. And you will create an account for dolibarr's administration. After this, remember to rm -rf the 'install' directory : rm -rf /var/www/${VHOST_HOSTNAME}/htdocs${VHOST_APPDIR}/install ================================================================= UPGRADE INSTRUCTIONS ================================================================= None... no upgrade available for the moment.