Skip to Content
Menu
This question has been flagged
1 Reply
10351 Views

yum install postgresql, python dependencies, and odoo on CentOS 7.

ODOO is installed:

[root@bogon ~]# yum install odoo
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
* epel: mirror.premi.st
Package odoo-9.0c_20160829-1.noarch already installed and latest version
Nothing to do
[root@bogon ~]#

postgresql is isntalled and running:

[root@bogon ~]# ps -ef | grep postgres

postgres 2085 1 0 06:42 ? 00:00:00 /usr/bin/postgres -D /var/lib/pgsql/data -p 5432

postgres 2647 2085 0 06:42 ? 00:00:00 postgres: logger process

postgres 2707 2085 0 06:42 ? 00:00:00 postgres: checkpointer process

postgres 2708 2085 0 06:42 ? 00:00:00 postgres: writer process

postgres 2709 2085 0 06:42 ? 00:00:00 postgres: wal writer process

postgres 2710 2085 0 06:42 ? 00:00:00 postgres: autovacuum launcher process

postgres 2711 2085 0 06:42 ? 00:00:00 postgres: stats collector process

root 13455 12708 0 06:51 pts/1 00:00:00 grep --color=auto postgres

however the systemctl command failed to start odoo

[root@bogon ~]# systemctl | grep odoo

● odoo.service               loaded     failed     failed              Odoo Open Source ERP and CRM

[root@bogon ~]#

how can I check what's wrong was there?

the Odoo config file:

[root@bogon ~]# more /etc/odoo/openerp-server.conf
[options]
; This is the password that allows database operations:
; admin_passwd = admin
db_host = 127.0.0.1
db_port = False
db_user = postgres
db_password = postgres
addons_path = /usr/lib/python2.7/site-packages/openerp/addons
logfile = /var/log/odoo/odoo.log
[root@bogon ~]#

the /var/log/odoo/odoo.log is an empty file

[root@bogon ~]# cat /var/log/odoo/odoo.log
[root@bogon ~]#




Avatar
Discard
Best Answer

Hello Leon,


What version of Odoo are you trying to install?

You might try checking /var/log/messages log file. It writes at least some error messages to there.

Avatar
Discard
Related Posts Replies Views Activity
2
Sep 21
9884
0
Nov 20
3693
3
Feb 17
4235
2
Sep 16
8058
5
May 16
1904