--- doc/build/ubuntu14LTS_install.frag 2021/01/09 03:26:20 1.4 +++ doc/build/ubuntu14LTS_install.frag 2022/03/26 19:00:51 1.6 @@ -94,6 +94,7 @@ Use ufw to allow incoming traffic for th ssh, www, https
+sudo apt-get install ufw sudo ufw default deny sudo ufw enable sudo ufw allow ssh @@ -137,13 +138,29 @@ sudo apt-get updateExecute:
sudo apt-get install python-software-properties -sudo apt-add-repository 'deb http://install.loncapa.org/ubuntu trusty main' +sudo add-apt-repository 'deb http://install.loncapa.org/ubuntu trusty main'You can display which repositories are currently enabled by using:
-sudo apt-cache policy +grep '^deb ' /etc/apt/sources.list |grep ' trusty ' ++The output should contain:
++deb http://us.archive.ubuntu.com/ubuntu trusty main +deb http://us.archive.ubuntu.com/ubuntu trusty universe +deb http://install.loncapa.org/ubuntu trusty main ++If the Ubuntu universe repository is absent it can be added using:
++sudo add-apt-repository universe ++If other Ubuntu repositories, e.g., restricted and multiverse are enabled, +you can disable them, as they are not needed for LON-CAPA, by using:
++sudo add-apt-repository --remove restricted +sudo add-apt-repository --remove multiverseInstall prerequisites
Execute:
@@ -152,6 +169,15 @@ sudo apt-get install loncapa-prerequisit
This may take some minutes due to LON-CAPA's large number of dependencies.
+Execute:
++sudo mysql_secure_installation +
+Answer “Y” (yes) to the prompts to: +(a) remove anonymous users, +(b) restrict root user access to the local machine, +and (c) remove the test database.
Execute:
@@ -181,7 +207,6 @@ execute the setup script with the followcd installation sudo ./install.pl -The script is used to prepare a Linux system to run LON-CAPA, and can also be @@ -251,12 +276,11 @@ for it to function at all. Below is a l
Configuring LON-CAPA
-To configure and install LON-CAPA, become root and execute the following commands: +To configure and install LON-CAPA execute the following commands:
-sudo -i -cd /root/loncapa-X.Y.Z (X.Y.Z should correspond to a version number like '2.11.0') -./UPDATE +cd ../loncapa-X.Y.Z (X.Y.Z should correspond to a version number like '2.11.0') +sudo ./UPDATEYou will need to enter the LON-CAPA configuration information you determined @@ -272,18 +296,19 @@ invoked below requires that you enter th Replace USERNAME and DOMAIN with an appropriate username and your domain.
-cd /root/loncapa-X.Y.Z/loncom/build -perl make_domain_coordinator.pl USERNAME DOMAIN +cd loncom/build +sudo perl make_domain_coordinator.pl USERNAME DOMAIN +cd7. Start/Restart Services
The LON-CAPA network services take a moment to start. Most misconfigurations -will be apparent at this step. Lastly, exit from root status to resume use of your regular account. +will be apparent at this step.
-/etc/init.d/loncontrol start -/etc/init.d/apache2 restart +sudo /etc/init.d/loncontrol start +sudo service apache2 restart exit