On 07/04/2021 20:43, Aidan Shribman wrote: > From: hunchback <[email protected]> > > add documentation of install sequence sudo to support running install > sequence as non-root user > > Signed-off-by: Aidan Shribman <[email protected]> > --- > Documentation/intro/install/general.rst | 14 +++++++------- > 1 file changed, 7 insertions(+), 7 deletions(-) > > diff --git a/Documentation/intro/install/general.rst > b/Documentation/intro/install/general.rst > index 08a03a632..ee4827242 100644 > --- a/Documentation/intro/install/general.rst > +++ b/Documentation/intro/install/general.rst > @@ -371,7 +371,7 @@ Building > 3. Run ``make install`` to install the executables and manpages into the > running system, by default under ``/usr/local``:: > > - $ make install > + $ sudo make install
Maybe the prompt could be changed to "#" to imply root privileges? > > .. _general-starting: > > @@ -422,23 +422,23 @@ Before starting ovn-northd you need to start OVN > Northbound and Southbound > ovsdb-servers. Before ovsdb-servers can be started, > configure the Northbound and Southbound databases:: > > - $ mkdir -p /usr/local/etc/ovn > - $ ovsdb-tool create /usr/local/etc/ovn/ovnnb_db.db \ > + $ sudo mkdir -p /usr/local/etc/ovn > + $ sudo ovsdb-tool create /usr/local/etc/ovn/ovnnb_db.db \ > ovn-nb.ovsschema > - $ ovsdb-tool create /usr/local/etc/ovn/ovnsb_db.db \ > + $ sudo ovsdb-tool create /usr/local/etc/ovn/ovnsb_db.db \ > ovn-sb.ovsschema > > Configure ovsdb-servers to use databases created above, to listen on a Unix > domain socket and to use the SSL configuration in the database:: > > - $ mkdir -p /usr/local/var/run/ovn > - $ ovsdb-server /usr/local/etc/ovn/ovnnb_db.db > --remote=punix:/usr/local/var/run/ovn/ovnnb_db.sock \ > + $ sudo mkdir -p /usr/local/var/run/ovn > + $ sudo ovsdb-server /usr/local/etc/ovn/ovnnb_db.db > --remote=punix:/usr/local/var/run/ovn/ovnnb_db.sock \ > --remote=db:OVN_Northbound,NB_Global,connections \ > --private-key=db:OVN_Northbound,SSL,private_key \ > --certificate=db:OVN_Northbound,SSL,certificate \ > --bootstrap-ca-cert=db:OVN_Northbound,SSL,ca_cert \ > --pidfile=/usr/local/var/run/ovn/ovnnb-server.pid --detach > --log-file=/usr/local/var/log/ovn/ovnnb-server.log > - $ ovsdb-server /usr/local/etc/ovn/ovnsb_db.db > --remote=punix:/usr/local/var/run/ovn/ovnsb_db.sock \ > + $ sudo ovsdb-server /usr/local/etc/ovn/ovnsb_db.db > --remote=punix:/usr/local/var/run/ovn/ovnsb_db.sock \ > --remote=db:OVN_Southbound,SB_Global,connections \ > --private-key=db:OVN_Southbound,SSL,private_key \ > --certificate=db:OVN_Southbound,SSL,certificate \ > _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
