C compiler gcc not found while installing passenger and nginx

后端 未结 6 1644
盖世英雄少女心
盖世英雄少女心 2021-02-15 18:43

I\'m trying to install Passenger and Nginx on my VPS.

I followed these instructions and replaced all links of all sources to the current version.

But when i ran

6条回答
  •  自闭症患者
    2021-02-15 19:00

    One quick hack (I struggled a lot with it and finally install pre-built) is to install the pre-built package of Nginx rather than compiling it from source.

    For RHEL/CentOS create the file named /etc/yum.repos.d/nginx.repo with the following contents:

    [nginx]
    name=nginx repo
    baseurl=http://nginx.org/packages/OS/OSRELEASE/$basearch/
    gpgcheck=0
    enabled=1
    

    In above baseurl replace “OS” with “centos” and “OSRELEASE” with “6”.

    Finally execute yum install nginx

    Reference https://nginx.org/en/linux_packages.html#stable

提交回复
热议问题