Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

Odoo 16 in docker - Where can I find logs?

Odoberať

Get notified when there's activity on this post

This question has been flagged
addonslogs
4 Replies
13344 Zobrazenia
Avatar
Maby Esperanza

I have downloaded an addon. Also added the path to its folder in odoo.conf​ . The first time I did it I had no problems. But after turning down my computer I started the server again and it didn't work. (idk what happens with the docker compose for my odoo when I turn out computer, does it make docker-compose stop or down?) 

I am doing: `docker exec -it bash` 

And go to /var/log/odoo but found nothing related to this directory.


I am using ubuntu 20.04 and Odoo running in docker-

0
Avatar
Zrušiť
Maby Esperanza
Autor

I really appreciate your answers.

@Jort When I put docker logs --tail 50 my-container it isnt showing anything. 


@Alexander It seems that I don't have odoo-server.log on my docker.

Jort de Vreeze

Odoo's logging is managed by Python's standard library module logging. By default, log messages are written to stderr. So is Odoo configured to output log messages to a logfile?

You can run Odoo with either the --logfile option or provide the logfile setting in the configuration file, so log messages will be written to the specified file. For example:

[options]
; ...
logfile = /var/log/odoo/odoo-server.log
; ...

This setting causes Odoo to write log messages to /var/log/odoo/odoo-server.log. Remember that, due to the ephemeral nature of Docker containers, if you're running Odoo inside a Docker container and you want the logs to persist across restarts of the container, you should ensure that /var/log/odoo is a Docker volume or bind mount (see https://docs.docker.com/storage/).

Maby Esperanza
Autor

Thank you Jort. Based on the path you gave me I looked for it in the odoo.conf and found : `logfile =etc/odoo/odoo-server.log` also, there is a file in my local computer that has the same values so there is no problem about persistance.

Thank you a lot, your blog helped me to understand too.

Avatar
Jort de Vreeze
Best Answer

If Odoo is not configured to save the logs you can see the logs for your Odoo container with the following command: docker logs --tail 50 my-container​, where my-container​ is the id or name of the container. This command shows the last 50 lines of the log. If you don't know how to find the container name or id, you can use docker ps.​ This command will also rule out if a container is running or not. If the docker​ command doesn't work, try above with sudo​.

How did you configure your docker container? By default the data doesn’t persist when that container no longer exists. Docker has two options for containers to store files on the host machine, so that the files are persisted even after the container stops: volumes, and bind mounts.

For more information about setting up docker and odoo you can also checkout my blog post.

I hope this helps.

0
Avatar
Zrušiť
Avatar
Standard Technology Services, Thailand
Best Answer

Guess little late for this question but I hope it helps others, docker container logs are located in "/var/lib/docker/containers" in JSON log format. 

use "docker ps" on the host machine and check the relevant matching container id. 
so there 2 methods - 

1)  docker container logs 3ae3a5d80171  --follow   ( 'tail -f' like output ) 
   or 
   docker container logs  -n 50 3ae3a5d80171     ( last 50 ) 


2) on the host machine -- 
   cd /var/lib/docker/containers/3ae3a5d80171* 
   tail -f 3ae3a5d80171*.log


0
Avatar
Zrušiť
Avatar
Alexander
Best Answer

hi, you can use 'tail -f /var/log/odoo/odoo-server.log' let me know if it works!! :D

0
Avatar
Zrušiť
Mahmoud

did you notice the word DOCKER !!!! ??

Avatar
Cybrosys Techno Solutions Pvt.Ltd
Best Answer

Hi,

You can try using 'tail -f /var/log/odoo/odoo-server.log' to check your logs. If you don't get the log file in that directory, try 'tail -f /var/log/odoo-server.log'.

Either of this should work. 

Regards

0
Avatar
Zrušiť
Mahmoud

did you notice the word DOCKER

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrácia
Related Posts Replies Zobrazenia Aktivita
Odoo isn't seeing an add-on that I downloaded and placed in the addons folder Solved
addons
Avatar
Avatar
Avatar
Avatar
Avatar
5
okt 25
2456
ADD ON FINANCIAL MODULE/FISCALE ACCOUNTING FOR ODOO 18 COMMUNITY
addons
Avatar
Avatar
Avatar
2
aug 25
1821
Uploaded Addons don't appear when Updating Addons List
addons
Avatar
Avatar
1
dec 23
4456
Odoo 16 package requires python-requests in one version, but the TicketBAI addon requires python-requests in another version
addons
Avatar
0
sep 23
4344
Access
addons
Avatar
Avatar
1
okt 24
4630
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now