Jump to content

Recommended Posts

Posted

I am looking for some assistance.

Our VLE (Moodle) is hosted by another organisation and they are not the best at updating the system, we are about 8 versions behind.

 

I have been asked to install and host moodle on our server, but its a bit of a mind blower for a first timer. Does anyone have any clear step by step instructions for setting up a Server 2012 to run the latest version of moodle, php sql etc

Posted
This is something my organisation is currently investigating. How many users do have in Moodle? What's your server spec? Do you run any external reports from your Moodle? (SQL reporting).Sorry for the random bombardment of questions..
Posted

I have decided to give the linux option a try and have setup a ubuntu server 14.04 following the installtion instructions on https://docs.moodle.org/26/en/Step-by-step_Installation_Guide_for_Ubuntu I have got as far as

 

Step 4: Download Moodle

Setup your local repository and download Moodle, We will use /opt for this installation.

 

cd /opt

 

sudo git clone git://git.moodle.org/moodle.git

 

But it returns an error stating

 

Cloning into moodle

Fatal: unable to connect to git.moodle.org:

git.moodle.org[0: 78.46.57.7]: errno=connection timed out

 

I am a total newbie to linux, can someone point me in the right direction.

Posted
sudo git clone git://git.moodle.org/moodle.git

 

But it returns an error stating

 

Cloning into moodle

Fatal: unable to connect to git.moodle.org:

git.moodle.org[0: 78.46.57.7]: errno=connection timed out

 

I am a total newbie to linux, can someone point me in the right direction.

Possibly proxy settings. Try something like

git config --global http.proxy http://proxyuser:[email protected]:8080
git config --global https.proxy https://proxyuser:[email protected]:8080

adjusting/omitting params as required

Posted

I cloned using HTTPS when I was doing our Moodle setup on Ubuntu, might work a bit easier then the git protocol if your having issues:

 

From memory it was:

sudo -i
cd /opt
export http_proxy=http://myproxy:port/
export https_proxy=http://myproxy:port/
git clone https://github.com/moodle/moodle.git

 

My notebook is at work so can't check to see whether I did anything else at the moment.

  • Thanks 1
Posted
Yeah get your proxy settings in, it'll fly then. Then install ssh (apt-get install openssh-server) so you can remote into it with Putty. Give me a PM if you have any questions - I can show you our simple in-house linux webserver.
Posted
This is something my organisation is currently investigating. How many users do have in Moodle? What's your server spec? Do you run any external reports from your Moodle? (SQL reporting).Sorry for the random bombardment of questions..
The main Moodle 2012R2, 4GB RAM, 2.4GHz dual core, 60GB HD, although it's virtualised. We have 1100 students all who use it. The other Moodle is on the same spec vm with 7 users. We don't run any external reports.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...