Changes between Version 16 and Version 17 of Tutorials/m0SDN/OpenStack


Ignore:
Timestamp:
Jun 12, 2023, 4:23:39 AM (13 months ago)
Author:
jlaxman
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Tutorials/m0SDN/OpenStack

    v16 v17  
    2525
    2626=== Set up an OpenStack development environment via DevStack ===
    27 Update and Upgrade Packages:
     271. Update and Upgrade Packages:
    2828{{{sudo apt-get update && sudo apt-get upgrade}}}
     292. Install Git:
     30{{{sudo apt-get install git}}}
     313. Clone the DevStack Repository:
     32{{{git clone https://github.com/openstack/devstack.git}}}
     334. Create a Stack User:
     34{{{sudo ./devstack/tools/create-stack-user.sh}}}
     355. Switch to the Stack User:
     36{{{sudo su stack
     37cd ~}}}
     386. Clone the DevStack Repository (as the Stack User):
     39{{{git clone https://git.openstack.org/openstack-dev/devstack}}}
     407. Remove the Existing Python 3 Pip Package (if present and Download and Install the Latest Python 3 Pip Package:
     41{{{sudo apt remove python3-pip}}}
     42{{{wget https://bootstrap.pypa.io/get-pip.py
     43sudo python3 get-pip.py}}}
     448. Install a Specific Version of the Cryptography Package(there is version conflict with the OpenSSL package automatic installed by dev stack so better install the this below version) :
     45{{{pip install cryptography==38.0.4}}}
     469. Configure and setup local.conf in dev stack folder according to requirement (either the controller or compute node):
     47{{{cd devstack/samples
     48cp local.conf ../
     49cd ../}}}
     50
     51
     52
     53
     54
    2955
    3056