Ubuntu 12.0.4 x64
Ubuntu 12.0.4 x64
Hi,
I'm trying to install Vesta on a clean build Digitalocean VM, Ubuntu 12.0.4 x 64 and it fails with the following:
I've tried 2 completely clean builds now with the same error. Any suggestions?
Thanks
I'm trying to install Vesta on a clean build Digitalocean VM, Ubuntu 12.0.4 x 64 and it fails with the following:
Code: Select all
Creating config file /etc/roundcube/main.inc.php with new version
Lighttpd not installed, skipping
* Reloading web server config apache2 Setting up roundcube (0.7.1-2) ...
Setting up roundcube-plugins (0.7.1-2) ...
Setting up liblwp-protocol-https-perl (6.02-1) ...
Processing triggers for libc-bin ...
ldconfig deferred processing now taking place
Errors were encountered while processing:
libapache2-mod-rpaf
E: Sub-process /usr/bin/dpkg returned an error code (1)
Error: apt-get install failed
Thanks
Re: Ubuntu 12.0.4 x64
Something is wrong with the apt repo. Can you please paste here output of following commands
Code: Select all
apt-get update
apt-cache search libapache2-mod-rpaf
apt-get install libapache2-mod-rpaf
dpkg -l libapache2-mod-rpaf
Re: Ubuntu 12.0.4 x64
Thanks skid, I just had a bit of a breakthrough.
Looks like there was a process hanging.
sudo netstat -ltnp | grep ':80'
This would return the following:
tcp6 0 0 :::80 :::* LISTEN 75221/apache2
Then I ran the following command:
sudo kill -9 75221 (or whatever pid appears on the above instance)
Then did a:
bash vst-install-ubuntu.sh --force
which appears to have done the trick.
Just to highlight this happened on multiple clean (DigitalOcean) Ubuntu 12.0.4 builds
Looks like there was a process hanging.
sudo netstat -ltnp | grep ':80'
This would return the following:
tcp6 0 0 :::80 :::* LISTEN 75221/apache2
Then I ran the following command:
sudo kill -9 75221 (or whatever pid appears on the above instance)
Then did a:
bash vst-install-ubuntu.sh --force
which appears to have done the trick.
Just to highlight this happened on multiple clean (DigitalOcean) Ubuntu 12.0.4 builds
Re: Ubuntu 12.0.4 x64
I got, I will try to reproduce it fix. Thank you
Re: Ubuntu 12.0.4 x64
Just tried it again on another clean build. Same issue, same fix.
It also looks like killing the process spawns another one straight away. This 2nd one also needs to be killed before the install will complete.
It also looks like killing the process spawns another one straight away. This 2nd one also needs to be killed before the install will complete.