`PHP Fatal Error: date(): Timezone database is corrupt` on redhat 6.9, nginx, php-fpm

`PHP Fatal Error: date(): Timezone database is corrupt` on redhat 6.9, nginx, php-fpm

我在 php-fpm 上调用 date() 时出错。

我知道 php-fpm 与 phpinfo() 运行良好。

我已将权限 777 授予 /usr/share/zoneinfo/etc/localtime。但是还是不行。

这是我的源代码和环境。

# time.php
<?php
    echo date('r');
?>

# php-fpm error log
[11-Aug-2017 16:18:41] WARNING: [pool www] child 64492 said into stderr: "NOTICE: PHP message: PHP Fatal error:  strftime(): Timezone database is corrupt - this should *never* happen! in ******time.php in line 2"

# current environment
[root@localhost ~]# lsb_release -a
LSB Version:    :base-4.0-amd64:base-4.0-noarch:core-4.0-amd64:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-noarch
Distributor ID: RedHatEnterpriseServer
Description:    Red Hat Enterprise Linux Server release 6.9 (Santiago)
Release:        6.9
Codename:       Santiago
[root@localhost  ~]# nginx -v
nginx version: nginx/1.12.0
[root@localhost  ~]# php -v
PHP 5.3.3 (cli) (built: Nov  7 2016 11:21:30)
Copyright (c) 1997-2010 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2010 Zend Technologies

尝试重新安装系统时区数据库'stuff' -

yum reinstall tzdata

Reinstalling timezonedb with pecl 解决了我的问题。