博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
fix issue on ImportError: libGeoIP.so.1
阅读量:6568 次
发布时间:2019-06-24

本文共 486 字,大约阅读时间需要 1 分钟。

libGeoIP works well in Python web app while using eclipse embeded server, but error occurs when using apache as the web server.

The error message as below,
ImportError: libGeoIP.so.1: cannot open shared object file: No such file or directory

Fixed steps:

1. Make a symbolic link for "libGeoIP.so.1"
    e.g. ln -s /usr/local/lib/libGeoIP.so.1 /usr/lib/libGeoIP.so.1
2. run command in terminal.
    ldconfig
3. Restart appache

转载于:https://www.cnblogs.com/jmbkeyes/archive/2012/10/25/2738485.html

你可能感兴趣的文章
写在除夕夜
查看>>
JAVA中的list去重复
查看>>
JAVA 代码里中文乱码问题
查看>>
Grub的安装方法
查看>>
SpringMVC通过注解方式读取properties文件中的值
查看>>
Spring+Dubbo+Zookeeper简单框架与使用
查看>>
Open Cascade DataExchange DXF
查看>>
Greenplum Hadoop分布式平台大数据解决方案实战教程
查看>>
编译安装LAMP之配置httpd以FastCGI方式与php整合
查看>>
Haproxy
查看>>
性能调优之Java系统级性能监控及优化
查看>>
SylixOS内核打印调试方法
查看>>
轻量级的jQuery表单验证插件 - HAPPY.js
查看>>
JAVA简单介绍2
查看>>
Spring MVC 框架搭建及详解
查看>>
Android startActivityForResult
查看>>
Hibernate 乐观锁和悲观锁
查看>>
C语言 学生宿舍管理系统
查看>>
在 Linux 下忘记 mysql root 密码的解决方法
查看>>
python-mysql的安装和基本操作
查看>>