콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
10817 화면

I received errors after change data_dir path to /var/lib/odoo (Odoo 13 docker)

How can I clean cache ?

2020-06-25 15:19:04,648 1 INFO odoo odoo.addons.base.models.ir_attachment: _read_file reading /var/lib/odoo/filestore/odoo/2f/2f7028932480cdcb927f83b0165d577669e620fa
web_1  | Traceback (most recent call last):
web_1  |   File "/usr/lib/python3/dist-packages/odoo/api.py", line 745, in get
web_1  |     value = self._data[field][record._ids[0]]
web_1  | KeyError: 273
web_1  |
web_1  | During handling of the above exception, another exception occurred:
web_1  |
web_1  | Traceback (most recent call last):
web_1  |   File "/usr/lib/python3/dist-packages/odoo/fields.py", line 996, in __get__
web_1  |     value = env.cache.get(record, self)
web_1  |   File "/usr/lib/python3/dist-packages/odoo/api.py", line 751, in get
web_1  |     raise CacheMiss(record, field)
web_1  | odoo.exceptions.CacheMiss: ('ir.attachment(273,).datas', None)
web_1  |
web_1  | During handling of the above exception, another exception occurred:
web_1  |
web_1  | Traceback (most recent call last):
web_1  |   File "/usr/lib/python3/dist-packages/odoo/addons/base/models/ir_attachment.py", line 103, in _file_read
web_1  |     with open(full_path,'rb') as fd:
web_1  | FileNotFoundError: [Errno 2] No such file or directory: '/var/lib/odoo/filestore/odoo/2f/2f7028932480cdcb927f83b0165d577669e620fa'

아바타
취소

Did you find a solution?

베스트 답변

Hii,

Ensure Filestore Exists

Check if the filestore for your DB exists:

ls /var/lib/odoo/filestore/<your_db_name>


Fix Permissions

Make sure Odoo can access the folder:

chown -R odoo:odoo /var/lib/odoo

chmod -R 755 /var/lib/odoo


Clear Python & Odoo Cache (inside container)

docker exec -it <your_container> find /usr/lib/python3 -name "*.pyc" -delete

docker exec -it <your_container> rm -rf /var/lib/odoo/.local


Restart Docker


docker-compose down

docker-compose up -d --build


i hope it is use full
i dont know you are which os use 

this is for ubuntu

아바타
취소
관련 게시물 답글 화면 활동
1
11월 22
4017
1
11월 20
6047
6
6월 20
22552
1
8월 25
1707
2
12월 24
7065