nginx 1.2.3 instalado, mas permanece em 1.1.19

3

Instalei o nginx 1.2.3 adicionando um novo ppa

sudo add-apt-repository ppa:nginx/stable
sudo apt-get update
sudo apt-get install nginx

No entanto, nginx -v ainda me dá 1.1.19. O que aconteceu?

Resultado

The following packages will be upgraded:
  nginx
1 upgraded, 0 newly installed, 0 to remove and 46 not upgraded.
Need to get 61.8 kB of archives.
After this operation, 3,072 B of additional disk space will be used.
Get:1 http://ppa.launchpad.net/nginx/stable/ubuntu/ precise/main nginx all 1.2.3-0ubuntu0ppa3~precise [61.8 kB]
Fetched 61.8 kB in 0s (89.7 kB/s)
(Reading database ... 79914 files and directories currently installed.)
Preparing to replace nginx 1.1.19-1 (using .../nginx_1.2.3-0ubuntu0ppa3~precise_all.deb) ...
Unpacking replacement nginx ...
Setting up nginx (1.2.3-0ubuntu0ppa3~precise) ...

root@precise64:/var/www/apadment# nginx -v
nginx version: nginx/1.1.19
    
por Nyxynyxx 12.10.2012 / 05:30

1 resposta

1

Eu não acho que atualizará todo o seu nginx, e se você fizer um dpkg -l | grep nginx você provavelmente verá que o seu nginx-full ainda é 1.1.19

faça isso (depois de fazer backup dos dados, se houver algum!)

apt-get purge nginx
apt-get install nginx

agora você tem todos os novos pacotes.

    
por 12.10.2012 / 07:13