
postgresql
文章平均质量分 72
Storm Mun
这个作者很懒,什么都没留下…
展开
-
Postgres12.5安装方法,PostgreSql中文社区推荐(新服务器需安装其他依赖)
中文网站位置跳转链接: http://www.postgres.cn/v2/download安装命令一览源码安装指导Linux平台编译安装的快捷参考(Centos平台/Pg12.2为例):wget https://ftp.postgresql.org/pub/source/v12.2/postgresql-12.2.tar.bz2tar xjvf postgresql*.bz2 #解压至一个目录cd potgresql-12.2./configure --prefix=/opt/pgsql原创 2022-04-02 12:10:59 · 2399 阅读 · 0 评论 -
pg_dump导出导入数据到postgres数据库,windows与linux centos7操作方法
/etc/hosts https://blog.youkuaiyun.com/tanga842428/article/details/530786431. windows版先找到安装包所在路径路径为:E:\software\postgres\bin2. 打开cmd,进入这个路径中原创 2020-06-10 12:41:50 · 3335 阅读 · 0 评论 -
postgres实现流复制,服务器centos6.5
安装postgres:https://blog.youkuaiyun.com/qq_35456400/article/details/106070433原创 2020-06-10 10:48:02 · 199 阅读 · 0 评论 -
postgresql.conf 参数详解
$PGDATA/postgresql.conf设置及说明listen_addresses = ‘*’ #全IP监听port = 5432 #端口指定max_connections = 900 #连接数shared_buffers = 5GB #1/4左右、数据库缓冲区temp_buffers = 16MB #具体更加是否使用临时表大小。work_mem= 16MB原创 2020-06-10 10:21:56 · 1047 阅读 · 0 评论 -
linux安装postgresql,服务器CentOS Linux release 7.6.1810 (Core)
建立/postgres文件夹[root@VM_0_3_centos ~]# cd /[root@VM_0_3_centos /]# mkdir postgres[root@VM_0_3_centos /]# chmod 777 postgres上传postgresql-9.4.4.tar.gz文件至/postgres,解压、编译、安装,注意用户为root的要新开一个窗口操作或切回用户su - root[postgres@VM_0_3_centos postgres]$ rz[post.原创 2020-05-12 11:47:01 · 858 阅读 · 0 评论 -
java连接postgresql数据库代码及maven配置
postgresql数据库有默认数据库用户postgres,密码安装库时自己输入;当然也可以连接其他用户;maven依赖:db2依赖<dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-dbcp2</artifactId> ...原创 2020-05-06 12:46:04 · 10942 阅读 · 0 评论 -
postgres 安装报错 An error Occured executing the mocrosoft VC++ running time install
安装 postgresql 报错 “An error occured executing the Microsoft VC++ runtime installer”进cmd,进你软件的安装目录运行postgresql-11.1-1-windows-x64.exe --install_runtimes 0软件名称自己替换...原创 2020-04-29 21:51:09 · 600 阅读 · 0 评论