服务器7小时前
os: ubuntu 16.04 zabbix: 3.4 ip 规划 192.168.56.101 node1 pgsql 9.6 master 192.168.56.102 node2 pgsql 9.6 slave 192.168.56.103 node3 zabbix proxy 192.168.56.104 node4 zabbix server ...
服务器10小时前
os: ubuntu 16.04 zabbix: 3.4 ip 规划 192.168.56.101 node1 pgsql 9.6 master 192.168.56.102 node2 pgsql 9.6 slave 192.168.56.103 node3 zabbix proxy 192.168.56.104 node4 zabbix server ...
服务器14小时前
os: ubuntu 16.04 zabbix: 3.4 ip 规划 192.168.56.101 node1 pgsql 9.6 master 192.168.56.102 node2 pgsql 9.6 slave 192.168.56.103 node3 zabbix proxy 192.168.56.104 node4 zabbix server ...
服务器2025年10月12日
注意:默认用户名是postgres,以下命令是Ubuntu操作系统中的命令 make GCC Zlib 安装命令:sudo apt-get install zlib1g-dev注意有些软件包的名字无法确定,可以借助ubuntu software center来确定其有效名字,readline 安装命令:sudo apt-get install librea...
服务器2025年10月12日
Step1: 切换用户为postgres sudo su postgres Step2: 用postgres连接postgreSQL psql -U postgres Step3: 修改postgres密码 alter user postgres with password 'new password'; 现在postgres用户就拥有了新密码 ...
服务器2025年10月11日
本文将要介绍的安装是基于源码的安装,因此第一步是去postgresql的官网下载最新的源码。 有了源码之后,下一步就是编译了。为了调试postgresql的源码,编译的时候需要注意配置confgure选项。下边是具体的编译步骤。 1) :cd postgresql //postgresql位于主目录下。这一步是进入postgresql源码目录。注意该目录下...
服务器2025年10月11日
说明:前一段时间一直在FreeBSD的操作系统环境下进行实验,但是由于多次安装桌面系统失败,所以无法及时更新日志。昨天换了Ubuntu系统,在Unix 环境下摸索了3天之后,终于在Ubuntu上编译,安装PostgreSQL数据库,并且成功利用图形化调试程序DDD(Data Display Debugger)来以调试的方式运行程序,这对阅读代码十分有帮助。...
后端开发2025年07月07日
Installing on Debian Versions These instructions are for Debian Lenny 5.0 or Squeeze 6.0. You will need to make sure that your username is on the sudo authorized list located at '...
数据库2025年06月17日
2016-03-24 16:39:35.687http-8080-1[INFO ][org.springframework.jdbc.support.SQLErrorCodesFactory] SQLErrorCodes loaded: [DB2, Derby, H2, HSQL, Informix, MS-SQL, MySQL, Oracle, Post...
数据库2025年06月05日
使用Spring 的JDBCtemplate 调用数据库的时候 出现了如下的问题 SQLErrorCodes loaded: [DB2, Derby, H2, HSQL, Informix, MS-SQL, MySQL, Oracle, PostgreSQL, Sybase] 这个一般是因为SQL语句出错 会报这样的错误 这个时候关注Sql 语句的格式 以...