系统资源限制设置 vi /etc/security/limits.conf * soft nofile 1024000 * hard nofile 1024000 * soft noproc 1024000 * hard noproc 1024000 * soft core 1024000 * ha ...
分类:
其他好文 时间:
2020-04-14 18:56:21
阅读次数:
90
参考文章:TPS62130A Differences to TPS62130,http://www.ti.com/lit/an/slva644/slva644.pdf 两者主要的不同是TPS62130A no power good时,呈低电平;TPS62130呈高阻; 在上拉到VOUT时,两者PG最 ...
分类:
其他好文 时间:
2020-04-12 22:22:05
阅读次数:
78
引用:https://blog.csdn.net/kmblack1/article/details/81002316 wal_buffers默认值为-1,此时wal_buffers从shared_buffers中分配,wal_buffers大小为shared_buffers的1/32;autovac ...
分类:
其他好文 时间:
2020-04-12 14:21:36
阅读次数:
88
1. 查看客户端psql软件版本 psql --version 2. 查看服务端软件版本 -- SELECT version(); SHOW server_version; SHOW server_version_num;-- 转换为interger 输出结果 SELECT current_sett ...
分类:
其他好文 时间:
2020-04-12 12:25:55
阅读次数:
80
Component: BC-CTS-TMS 当装完系统,STMS第一次进入系统,就报错 The TMS configuration is inconsistent then check the TMS alert viewer:Message SET_CODEPAGE_FAILEDCould not ...
分类:
其他好文 时间:
2020-04-11 00:44:11
阅读次数:
96
在PG中,关于日期时间的有如下几种方法 select now(),CURRENT_DATE,CURRENT_TIME,CURRENT_TIMESTAMP ; 显示结果如下: SELECT to_char(now(),'YYYY-MM-DD HH24:MI:SS') now; now 2020-04- ...
分类:
数据库 时间:
2020-04-08 16:17:32
阅读次数:
385
-bash-4.2$ cd $PGDATA -bash-4.2$ ls base pg_commit_ts pg_logical pg_serial pg_subtrans pg_wal postmaster.opts current_logfiles pg_dynshmem pg_multixac ...
分类:
其他好文 时间:
2020-04-05 11:49:41
阅读次数:
73
摘要: 1、下载 https://www.postgresql.org/ 上传安装包到服务器(rz工具) [root@centos7-6 ~]# mkdir /pg-rpm [root@centos7-6 ~]# rz rz waiting to receive. Starting zmodem t ...
分类:
数据库 时间:
2020-04-05 09:46:51
阅读次数:
210
1. PG 主要进程及其辅助子进程# 下面分别截图主从异步复制进程2. 进程作用及其职责2.1 postmaster进程主进程postmaster是整个数据库实例的总控进程,负责启动和关闭数据库实例。主要职责是: 数据库的启停 监听客户端连接 为每个客户端连接fork单独的postgres服务进程 ... ...
分类:
系统相关 时间:
2020-04-01 19:18:59
阅读次数:
271
1. 软件目录结构[postgres@pxc 11]$ ls -l /ups/app/pgsql-11/total 16drwxr-xr-x 2 root root 4096 Oct 8 15:06 bin # 二进制可执行文件,是PG数据库的所有相关命令drwxr-xr-x 6 root root... ...
分类:
其他好文 时间:
2020-03-31 22:52:23
阅读次数:
100