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

I installed the Odoo runtime environment on a VM, OS is debian, python environment is virtual env. 
The development tool is VSCode, which accesses and modifies Odoo's source files through remote-ssh extension.
When I wanted to debug the code, I added the following configuration to VSCode's launch.json: 


         {
             "name": "Odoo",
             "type": "python",
             "request": "launch",
             "stopOnEntry": false,
             "pythonPath": "$ {workspaceRoot} /../ odoo-env / bin / python3",
             "program": "$ {workspaceRoot} / odoo-bin",
             "args": [
               "-c",
               "~/odoo13.conf"
             ],
             "cwd": "$ {workspaceRoot}",
             "console": "integratedTerminal",
         } 


But this configuration does not work properly, the error message is "OSError [Errno 98]  Address already in use ".
This seems to be a configuration for debugging odoo locally.

아바타
취소

To fix the address already in use issue, either you can restart the system or change the port number or to kill the running process, for more see: https://maheshwarimayur.blogspot.com/2013/02/socketerror-errno-98-address-already-in.html