Truncated or oversized response headers received from daemon process

后端 未结 8 2024
伪装坚强ぢ
伪装坚强ぢ 2021-01-11 12:50

I recently migrated a python django application from a debian system to a redhat enterprise distribution. The application is hosted using httpd, mod_wsgi and running in a ve

8条回答
  •  迷失自我
    2021-01-11 13:22

    I have installed filebeat which changed my ssl version so that psycopy2 needs to be updated and the error was Truncated or oversized response headers received from daemon process

    Do the following:-

    Uninstall your psycopy2 package using pip. I am using pip3 because my python version is 3.6.8

    sudo pip3 uninstall psycopg2
    

    Reinstall psycopy2 using pip.

    sudo pip3 install psycopg2
    

    Before psycopg2-2.7.4 now psycopg2-2.8.3

提交回复
热议问题