手动编译安装 openresty 时报了个错

1
2
3
4
5
./configure --prefix=/opt/openresty \
--with-luajit \
--without-http_redis2_module \
--with-http_iconv_module \
--with-http_postgres_module

这明明是官方提供的命令行,但是它本身又不提供 postgresql-devel 只能自己手动安装

1
$ sudo yum install -y postgresql-devel

手动编译安装最好提前安装这几个包

1
$ sudo yum install -y pcre-devel openssl-devel gcc postgresql-devel
03-17 04:15