postgresql 修改时区

问题描述 select now() 查询到的时间与系统时间不一致。 时区修改 /var/lib/pgsql/9.3/data/postgresql.conf 重启服务 /etc/init.d/postgresql-9.3 restart 本文链接地址: postgresql 修改时区

centos 配置 NTP 服务

简介 NTP是网络时间同步协议,就是用来同步网络中各个计算机的时间的协议。   NTP服务端配置 1. 检查是否已经安装 ntp 若未安装使用yum进行安装 查看是否安装 rpm -q ntp  yum安装命令 yum –y install ntp 1.1 启动服务( 如出现异常, 请先停止服务 ) service ntpd start 1.2 开放端口 123 /sbin/iptables -I INPUT -p tcp –dport 123 -j ACCEPT 2. 同步时间 ntpdate ntp.api.bz 返回与服务器相差时间, 即同步成功。 3. 同步硬件时 …

gulp 批量混淆代码

package.json {   “name”: “camera”,   “version”: “1.0.0”,   “description”: “2019年4月15日14:12:51”,   “main”: “config.js”,   “scripts”: {     “test”: “echo \”Error: no test …

利用 heatmap.js 创建热力图

代码 <!DOCTYPE html> <html> <head>   <meta charset=“UTF-8”>   <title></title>   <style>     div {       width: 600px;       height: 400px;       border: none;     }   </style> </head> <body>   <div id=“heatmap”>& …