Ubuntu 10.04的apt里带的pgAdmin是1.14,只能连接pg9.1及以下,但是我要连一个服务器是9.2的,只好装个高版本。结果编译源码安装碰到些问题
OS: Ubuntu 10.04 LTS
pgAdmin: 1.16 source code
Install:
./configure
make
make install
Trouble shooting:
1. configure: error: Could not find your PostgreSQL installation. You might need to use the --with-pgsql=DIR configure option apt-get install libpgsql-dev
2. configure: error: Could not find your wxWidgets installation. You might need to use the --with-wx=DIR configure option apt-get install wx-common libwxgtk2.8-dev
3. configure: error: Could not find your libxml2 installation. You might need to use the --with-libxml2=DIR configure option apt-get install libxml2-dev
4. configure: error: Could not find your libxslt installation. You might need to use the --with-libxslt=DIR configure option apt-get install libxslt1-dev
5. ./db/keywords.c:33:27: error: parser/kwlist.h:... apt-get install postgresql-server-dev-9.2
6.wxStyledTextEvent’ has not been declared 没有 进入wxWidgets解压后的目录的contrib/src/stc/目录下编译
补充postgresql9.0源
deb http://ppa.launchpad.net/pitti/postgresql/ubuntu lucid main deb-src http://ppa.launchpad.net/pitti/postgresql/ubuntu lucid main update 报错: GPG签名验证错误: http://ppa.launchpad.net hardy Release: 由于没有公钥,下列签名无法进行验证: NO_PUBKEY 6AF0E1940624A220 解决gpg --keyserver subkeys.pgp.net --recv 99B656EA8683D8A2
gpg --export --armor 99B656EA8683D8A2 | sudo apt-key add -
http://www.cnblogs.com/lexus/archive/2010/10/05/1842924.html
相关推荐
工具pgadmin 该服务仅有助于在Web控制台pgAdmin上管理用户,而无需数据库维护。 init.yml在ubuntu服务器中设置环境。 # ## check_syntax $ echo -e " -----list-tasks----- " $ ansible-playbook --list-tasks --...
然后,解压 pgadmin3-1.8.1 压缩包,进入目录并按照上述流程进行编译和安装。 5. **使用 Postgre Admin 3**: 安装完成后,可以在图形界面中找到 Postgre Admin 3 的图标,启动后需要配置连接到 PostgreSQL 服务器的...
此外,你还可以通过图形化管理工具如pgAdmin来管理PostgreSQL和PostGIS数据库,这样可以更直观地进行数据操作和管理。记得定期更新PostGIS以获取最新的功能和安全补丁。 参考博文链接:...
本文将详细讲解如何在Linux环境下安装部署Zabbix运维监控平台,基于提供的安装文件`zabbix-5.0.0`。 首先,我们需要确保我们的Linux系统满足Zabbix 5.0.0的系统需求。通常,Zabbix支持多种Linux发行版,如CentOS、...
文档还提到了使用Pgadmin3作为图形化数据库管理工具,以及Pycharm作为Python开发IDE的建议。 第三章“创建ODOO应用”是手册的核心部分,它指导开发者如何从零开始构建一个新的Odoo应用。首先,需要为新的插件模块...
当pip、pip2和pip3与对应的Python版本失配时,可能会引发一系列问题,如在本文中提到的启动pgadmin4时遇到的csrf错误,以及docker-compose模式下的postgres服务异常。为了解决这类问题,我们需要理解pip与Python版本...
安装代码编辑器(如Visual Studio Code)、Git客户端(如GitKraken)和其他有助于开发的工具,如PostgreSQL客户端(如pgAdmin)和数据库查看工具(如phpMyAdmin)。 **额外步骤:优化和安全** - 安装PHP扩展,如...
5.4 加分项: 通过 pgadmin3 来查看数据库 39 5.4.1 安装 39 5.4.2 连接服务器 39 5.4.3 图形化查询 40 6 Odoo 开发基础: 请假模块第一谈 43 6.1 纯理论讨论 43 6.2 定义模型 45 6.3 加入菜单 46 6.3.1 act_window 的...
此外,还会教授如何通过pgAdmin3工具来查看和管理数据库。 在Odoo开发基础部分,教程详细讲解了如何开发请假和工作计划模块,包括定义模型、加入菜单、视图优化以及创建图标等。此外,还涉及了Odoo模型层的详细分析...
为了更高效地管理和操作数据库,可以使用图形化工具,如phpMyAdmin(适用于MySQL)或pgAdmin(适用于PostgreSQL)。这些工具提供了友好的界面,简化了数据库的管理工作。 在开发过程中,你可能需要与Java应用程序...