Re: [modwsgi] mod_wsgi and Apache 2.4 on Centos 6.8 - undefined symbol: ap_accept_lock_mech

2017-11-08 Thread Graham Dumpleton
Do not use code.google.com site for docs. The docs can be found by going to www.modwsgi.org . For creating a working Python installation read: http://blog.dscpl.com.au/2015/06/installing-custom-python-version-into.html

Re: [modwsgi] mod_wsgi and Apache 2.4 on Centos 6.8 - undefined symbol: ap_accept_lock_mech

2017-11-08 Thread Graham Dumpleton
> On 9 Nov 2017, at 10:37 am, O haya wrote: > > Hi, > > I got this when I ran that: > > export AXPS=/apps/httpd-2.4.29/bin/apxs > > pip3.6 install --no-cache-dir mod_wsgi > Requirement already satisfied: mod_wsgi in > /apps/python-3.6.3/lib/python3.6/site-packages Run:

Re: [modwsgi] mod_wsgi and Apache 2.4 on Centos 6.8 - undefined symbol: ap_accept_lock_mech

2017-11-08 Thread O haya
Hi, I got this when I ran that: export AXPS=/apps/httpd-2.4.29/bin/apxs pip3.6 install --no-cache-dir mod_wsgi Requirement already satisfied: mod_wsgi in /apps/python-3.6.3/lib/python3.6/site-packages On Wednesday, November 8, 2017 at 6:10:12 AM UTC-5, Graham Dumpleton wrote: > > Do not use

Re: [modwsgi] mod_wsgi and Apache 2.4 on Centos 6.8 - undefined symbol: ap_accept_lock_mech

2017-11-08 Thread O haya
YES!! That did it and I was able to start Apache 2.4.29 after I added: LoadModule wsgi_module "/apps/python-3.6.3/lib/python3.6/site-packages/mod_wsgi/server/mod_wsgi-py36.cpython-36m-x86_64-linux-gnu.so" to the httpd.conf, and this was even without needing to export LD_LIBRARY_PATH! Now

Re: [modwsgi] mod_wsgi and Apache 2.4 on Centos 6.8 - undefined symbol: ap_accept_lock_mech

2017-11-08 Thread Graham Dumpleton
Running 'python setup.py install' with APXS environment variable set should also work. > On 9 Nov 2017, at 11:03 am, O haya wrote: > > YES!! That did it and I was able to start Apache 2.4.29 after I added: > > LoadModule wsgi_module >