跳至内容
菜单
此问题已终结
1 回复
10504 查看

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
3787
1
11月 20
5864
6
6月 20
22184
2
6月 25
1019
2
12月 24
5690