是否有可能在Chef的配方中识别出数据库服务器上正在运行哪个PostgreSQL版本。
现在我可以使用 awk 命令
进行识别示例:
[postgres@hostname]$ ps -aux | grep postgres
psharm89 39532 0.0 0.0 112644 960 pts/2 S+ 12:31 0:00 grep -- color=auto postgres
postgres 56958 0.0 0.9 2345396 77444 ? S May21 1:10 /opt/postgres/9.5/bin/postgres -D /opt/pgdata/9.5/data
postgres 56959 0.0 0.0 166416 1836 ? Ss May21 0:57 postgres: logger process
postgres 56961 0.0 2.1 2347908 173768 ? Ss May21 0:45 postgres: checkpointer process
postgres 56962 0.0 0.2 2345412 21096 ? Ss May21 0:14 postgres: writer process
postgres 56963 0.0 0.2 2345352 18284 ? Ss May21 0:25 postgres: wal writer process
postgres 56964 0.0 0.0 2345788 2820 ? Ss May21 1:14 postgres: autovacuum launcher process
postgres 56965 0.0 0.0 168668 2156 ? Ss May21 2:22 postgres: stats collector process
[postgres@hostname]$ PGHOME=$(ps -aux | grep postgres | grep -- -D |grep -v grep |awk '{NF=NF-2;print $NF}'|awk -F"/bin" '{print $1}')
[postgres@hostname]$ PGVER=$(/bin/basename $PGHOME)
[postgres@hostname]$ echo $PGVER
9.5
但是,类似地,我需要在Chef的配方中查找,以便可以创建变量 PGVER = 9.5 并将其用于我的postgresql数据库配置配方中。
答案 0 :(得分:0)
通常,这不是您使用Chef的方式。 Chef将负责强制使用哪个版本的Postgres。
但是,如果必须的话,可以使用类似以下的内容:
pgver = shell_out!('ps -aux').stdout[%r{postgres/(9\.\d+)/bin}, 1]
多数情况下,只是将字符串解析移至Ruby中,而不是Bash中,但基本思路相同。