zoukankan      html  css  js  c++  java
  • 关于升级linux下apache

    1:Check whether Apache is already installed.
    
    # rpm -qa | grep -i http
    
    httpd-tools-2.2.8-3.i386
    httpd-2.2.8-3.i386
    [Note: This indicates that Apache 2.2.8 version is installed already]
    2:Check whether latest version of Apache is available for installation using yum.
    yum check-update httpd
    
    Loaded plugins: refresh-packagekit
    httpd.i386      2.2.9-1.fc9       updates
    [Note: This indicates that the latest Apache version 2.2.9
           is available for upgrade]
    3:Upgrade Apache to latest version using yum.
    # yum update httpd
    Loaded plugins: refresh-packagekit
    Setting up Update Process
    Resolving Dependencies
    --> Running transaction check
    ---> Package httpd.i386 0:2.2.9-1.fc9 set to be updated
    --> Processing Dependency: httpd-tools = 2.2.9-1.fc9 for package: httpd
    --> Running transaction check
    ---> Package httpd-tools.i386 0:2.2.9-1.fc9 set to be updated
    --> Finished Dependency Resolution
    
    Dependencies Resolved
    
    =============================================================================
    Package                 Arch       Version          Repository        Size
    =============================================================================
    Updating:
    httpd                   i386       2.2.9-1.fc9      updates           975 k
    httpd-tools             i386       2.2.9-1.fc9      updates            69 k
    
    Transaction Summary
    =============================================================================
    Install      0 Package(s)
    Update       2 Package(s)
    Remove       0 Package(s)
    
    Total download size: 1.0 M
    Is this ok [y/N]: y
    Downloading Packages:
    (1/2): httpd-tools-2.2.9-1.fc9.i386.rpm                  |  69 kB     00:00
    (2/2): httpd-2.2.9-1.fc9.i386.rpm                        | 975 kB     00:00
    Running rpm_check_debug
    Running Transaction Test
    Finished Transaction Test
    Transaction Test Succeeded
    Running Transaction
    Updating       : httpd-tools                                       [1/4]
    Updating       : httpd                                             [2/4]
    Cleanup        : httpd                                             [3/4]
    Cleanup        : httpd-tools                                       [4/4]
    
    Updated: httpd.i386 0:2.2.9-1.fc9 httpd-tools.i386 0:2.2.9-1.fc9
    Complete!
    4:Verify whether the Apache got upgraded successfully.
    # rpm -qa | grep -i http
    
    httpd-tools-2.2.9-1.fc9.i386
    httpd-2.2.9-1.fc9.i386
    [Note: This indicates that Apache was upgraded to 2.2.9 successfully]
  • 相关阅读:
    一个例子说明如何在DataSnap中使用FireDAC
    DataSnap Demo:TFDConnection、最大连接数、客户端回叫功能、多线程模拟、压力测试等
    DataSnap Demo:TFDConnection、最大连接数、客户端回叫功能、多线程模拟、压力测试等
    Delphi2010中DataSnap技术网摘
    Delphi2010中DataSnap技术网摘
    推荐大家使用的CSS书写规范、顺序
    Windows autoKeras的下载与安装连接
    vscode Python 运行环境配置
    react框架
    关于k Line Chart (k线图)
  • 原文地址:https://www.cnblogs.com/keanuyaoo/p/3359758.html
Copyright © 2011-2022 走看看