Step 1☆ 安裝PostgreSQLyum install http://yum.postgresql.org/9.3/redhat/rhel-6-x86_64/pgdg-centos93-9.3-1.noarch.rpmyum install postgresql93-server postgresql93-contribStep 2☆ 开启防火墙端口iptables -I INPUT -p
原创 2014-04-29 14:34:31
1385阅读
9月9日,PostgreSQL全球开发组宣布了9.3版发布的消息。从2010年9.0版开始,PostgreSQL
原创 2022-12-12 10:42:23
230阅读
系统环境 CentOS release 6.2(Final) 64bit PostgreSQL版本:9.3.5 分别使用rpm、源码包、yum的安装方式进行安装1、安装PostgreSQLa.rpm安装 1.检查PostgreSQL是否已经安装   [root@localhost ~]#rpm -qa|grep postgresql&nb
原创 2014-09-12 14:34:14
3103阅读
1点赞
评:Postgres 9.3 目前正在紧锣密鼓的开发中,该版本值得关注的一个新特性就是 JSON 数据类型。在看完 new functions for data generation 这篇文章后,我们来看看在 commit 记录中关于新的 JSON 特性的说明:commit a570c98d7fa0841f17bbf51d62d02d9e493c7fcc Author: Andrew Dunsta
原创 2023-06-13 14:00:12
84阅读
环境系统 debian-6.0.4数据库 postgresql-9.3.0主库ip:172.16.2.151备库ip:172.16.2.36主库上操作设置 pg_hba.conf,添加以下host replication postgres 172.16.2.36/32 trust设置主库 postgresql.conf wal_level = hot_standby
原创 2013-10-30 10:29:17
2651阅读
pg的日志配置选项很多,默认的情况下pg只是记录了启动
原创 2021-09-08 09:40:40
495阅读
1 用root登入系统,下载postgresql9.3,解压缩,进入解压缩后的postgresql目录2 编译、安装pwd ./configure --prefix=/usr/local/pgsql #(可能会报错,需安装gcc、readline、readline-devel、zlib等依赖包,用yum去装即可) #(Debian8下apt-get install m
转载 精选 2015-05-09 19:16:58
836阅读
1点赞
在这篇文章中,我将向你介绍如何在Kubernetes中部署RHEL 9.3。如果你刚入行,可能会觉得这个过程有些复杂,但只要按照以下步骤操作,你就能成功地完成这个任务。 ### 步骤概览: | 步骤 | 操作 | | --- | --- | | 1 | 创建一个新的Kubernetes集群 | | 2 | 下载RHEL 9.3的镜像 | | 3 | 创建一个Deployment | | 4 |
原创 2024-04-29 12:26:17
81阅读
1 #include<bits/stdc++.h> 2 #define int long long 3 using namespace std; 4 const int N=1e5+11; 5 int n,h[N],a[N],ans[N]; 6 int sta[N],top; 7 8 inline ...
转载 2021-09-05 11:02:00
52阅读
2评论
window.onload=function(){ //id是d1的div添加鼠标移入事件 document.getElementById("d1").onmouseover=function(){ //让id是d2的div显示 document.getElementById("d2").style ...
转载 2021-09-03 16:49:00
74阅读
2评论
gcc升级
gcc
原创 2023-10-09 16:08:42
466阅读
GLPI 9.3安装
原创 2018-08-19 21:55:22
3908阅读
2评论
1 #include<bits/stdc++.h> 2 #define int long long 3 using namespace std; 4 const int N=1e5+11; 5 int n,h[N],a[N],ans[N]; 6 int sta[N],top; 7 8 inline ...
转载 2021-09-05 11:02:00
88阅读
2评论
1 #include<bits/stdc++.h> 2 #define int long long 3 using namespace std; 4 const int N=1e5+11; 5 int n,h[N],a[N],ans[N]; 6 int sta[N],top; 7 8 inline ...
转载 2021-09-05 11:02:00
91阅读
2评论
window.onload=function(){ //id是d1的div添加鼠标移入事件 document.getElementById("d1").onmouseover=function(){ //让id是d2的div显示 document.getElementById("d2").style ...
转载 2021-09-03 16:49:00
62阅读
2评论
console.log('a被改变了')//handler什么时候调用?当isHot发生改变时调用。/* //监视
原创 2022-12-27 12:42:41
67阅读
# 如何实现“Skywalking 9.3 Docker” ## 简介 在本文中,我将向你介绍如何使用Docker来实现Skywalking 9.3的部署。Skywalking是一个开源的应用性能监控工具,它能够帮助开发人员监控和分析分布式系统的性能。 ## 准备工作 在开始之前,请确保你已经正确安装了Docker,并具备一定的Docker基础知识。你可以在[Docker官方网站]( ##
原创 2023-07-20 04:34:09
300阅读
9.1 正则介绍_grep(上) 正则是一串有规律的字符串,通常包含一些特殊符号; grep/egrep egrep是grep的扩展,grep能实现的,egrep均能实现grep查找文件中的关键字[root@hyc-01-01 grep]# grep 'nologin' passwdbin:x:1:1:bin:/bin:/sbin/nologindaemon:x
原创 2018-07-04 08:06:20
387阅读
9.3 结构体指针古代的剑客们与对手相逢时,无论对手多么强大,明知不敌,也要亮出自己的剑!01指向结构体变量的指针1、指向结构体对象的指针变量既可以指向结构体变量,也可指向结构体数组中的元素。2、指针变量的基类型必须与结构体变量的类型相同。3、C语言中允许把(*p).num用p->num来代替,“->”代表一个箭头,p->num表示p所指向的结构体变量中的num成员。02 指向结
原创 2020-12-17 13:14:36
356阅读
Server 9.3 新特性 以下列举了ArcGIS Server 9.3里面新增的功能和特性。1. 使用新增ArcGIS JavaScript API创建GIS网络聚合功能创新的ArcGIS JavaScript API更易于
转载 2009-07-05 12:14:00
69阅读
2评论
  • 1
  • 2
  • 3
  • 4
  • 5