Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Update management node code

This step will move make a backup copy of the 2.2.1 vcl code base out of the way, so we can cleanly copy in the new management node(MN) codeand then copy the new code over the existing code to preserve any drivers or other files you've added.

  1. Copy 2.2.1 code base to a backup location
    Code Block
    cd <your vcl MN code root path>
    ie. cd /usr/local/
    cp -r vcl ~/vcl_2.2.1_managementnode
    
  2. Copy in the 2.3 code base to /usr/local, copying in should preserve any drivers or other files you've added.
    Code Block
    /bin/cp -r /root/apache-VCL-2.3-incubating/managementnode/* /usr/local/vcl
    
  3. Run install_perl_libs.pl to add any new perl library requirements:
    Code Block
    /usr/local/vcl/bin/install_perl_libs.pl
    

...