日度归档:2017年3月20日
./psycopg/psycopg.h:31:22: fatal error: libpq-fe.h: No such file or directory
yum install libpqxx-devel
pip install psycopg2
后就web.py可以happy的访问数据库了
postgres — PostgreSQL database server 安装和简单配置教程(centos7)
安装:
yum install postgresql-server
配置开机启动:
systemctl enable postgresql
初始化数据库:
postgresql-setup initdb
创建和删除数据库:
[root@web4 ~]# su - postgres Last login: Mon Mar 20 01:14:46 CST 2017 on pts/0 -bash-4.2$ -bash-4.2$ createdb xxxxx -bash-4.2$ createdb mydb -bash-4.2$ dropdb mydb
访问数据库:
psql xxxxx