PostgreSQL数据文件权限不对导致开机启动失败的问题

php中文网
发布: 2016-06-07 14:53:35
原创
3606人浏览过

PostgreSQL数据文件权限不对导致开机启动失败的问题 上午开发告知机子重启后DB连接不了了,登进去一开,确实,进程啥的都没有起来。 手工启动: [postgres@develop ~]$ pg_start server starting [postgres@develop ~]$ps -ef|grep postgres www.2cto.com 发


PostgreSQL数据文件权限不对导致开机启动失败的问题

 

上午开发告知机子重启后DB连接不了了,登进去一开,确实,进程啥的都没有起来。 

 

手工启动:

[postgres@develop ~]$ pg_start

server starting

[postgres@develop ~]$ps -ef|grep postgres

  www.2cto.com  

发现还是没起来,查看日志,里面有如此报错信息:

 

[postgres@develop ~]$ tail -f pg_log

FATAL:  data directory "/home/postgres/data" has wrong ownership

HINT:  The server must be started by the user that owns the data directory.

FATAL:  data directory "/home/postgres/data" has wrong ownership

HINT:  The server must be started by the user that owns the data directory.

FATAL:  data directory "/home/postgres/data" has wrong ownership

HINT:  The server must be started by the user that owns the data directory.

FATAL:  data directory "/home/postgres/data" has group or world access

DETAIL:  Permissions should be u=rwx (0700).

 

信息给得很详细,postgresql的数据文件权限被改了,起码现在不是0700(只有用户权限)。
返回去一看, 现在果然是777权限了。而且用户的所属也被改了,改成其他用户了。 

[postgres@develop ~]$ ll /home/postgres

ImgCleaner
ImgCleaner

一键去除图片内的任意文字,人物和对象

ImgCleaner 220
查看详情 ImgCleaner

drwxrwxrwx 14 tomcat ddd     4096 10-29 09:41 data

 

改回去:

[postgres@develop ~]$chown -R postgres:postgres  /home/postgres/data

[postgres@develop ~]$chmod 0700 /home/postgres/data

 

查看:  www.2cto.com  

drwx------ 14 postgres postgres     4096 10-29 09:41 data

 

再启动

[postgres@develop ~]$ pg_start

server starting

 

正常了。后来了解到是开发的一个误操作,改其他文件的权限的时候把DB文件的用户组权限也改了  。

 

总结:

默认情况下,PostgreSQL启动时,启动DB用户必须拥有数据文件的所属权限(user权限),且权限不能过大,否则就会报上述错误。其实这是一个安全的保护措施,防止DB文件因为权限开设太大而被其他非允许的用户访问。

 

最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号