在为数据库做RAMDISK的时候,把表空间建立在新做成的ramdisk上,结果却报错“ERROR: could not set permissions on directory "/home/postgres/tmp/cache": Operation not permitted”,可是将该文件夹赋予777的访问权限后,还是报同样的错误。
最后查到问题,因为数据库的安全策略,这个文件夹不属于postgres用户,所以表空间不能被建立在这个文件夹中。
解决:切换到root,执行命令chown postgres /home/postgres/tmp/cache/,将该文件夹的所有者改成postgres,
再切换回postgres后,执行“create tablespace ramtablespace LOCATION '/home/postgres/tmp/cache”,表空间创建成功。
原文链接:https://www.f2er.com/postgresql/195791.html