SecurityRiskAdvisors / VECTR

VECTR is a tool that facilitates tracking of your red and blue team testing activities to measure detection and prevention capabilities across different attack scenarios
1.39k stars 164 forks source link

I have a problem installing the program. How to fix it #45

Closed victorgenus closed 4 years ago

victorgenus commented 4 years ago

error : for sravectr_tomcat cannot start

https://drive.google.com/drive/u/0/folders/1VG7UCtbnQm6D5UjNy8ji2xA86oDwik5D

thebleucheese commented 4 years ago

Can you show us the contents of your vectr docker-compose.yml and devSsl.yml files? It looks like Docker is trying to mount an individual file as a directory or on top of something existing inside the container.

devSsl.yml is what mounts that file,

here's my devSsl.yml

githubissue1

victorgenus commented 4 years ago

after I setting my devSsl.yml as you and I install tomcat then ./vectr-install.sh again I have problem Capture

thebleucheese commented 4 years ago

There are a few small issues to correct:

  1. Your linux installation does not have zip installed. Did you install zip and unzip? The dependency instructions here https://github.com/SecurityRiskAdvisors/VECTR/wiki/Installation---Ubuntu for ubuntu outline installing dependencies including unzip, but I think you'll need to use your package manager to install "zip" as well if it's not present.

  2. After a failed installation, the VECTR installer may leave some artifacts like a Docker network in place. You will need to use Docker's commands to stop and remove any left-over networks or containers. 'sudo docker network ls' will list networks 'sudo docker network rm ' will remove a network by ID, 'sudo docker ps -a' will list all running containers, 'sudo docker stop ' will stop a container by ID and 'sudo docker rm ' will remove a container by ID.

As an aside, it looks like VECTR is running based on the output above. It may be misconfigured due to the previous failed installation, but you can try going to the URL provided at the bottom of that message to see if it works.

There's also an installation video guide here for Ubuntu: https://www.youtube.com/watch?v=SU6ZFwVyx7E

victorgenus commented 4 years ago

I have problem Capture

ssnkhan commented 4 years ago

Having similar issues here -- I have installed Vectr many times now, and there appears to have been some change in the past fortnight which is causing this issue.

Using Ubuntu LTS, and following the standard install instructions with the installer script. Getting the same Tomcat/docker/network issue despite using a new VM every single time.

thebleucheese commented 4 years ago

Edit: There was an issue with the installer. It broke default install to the home directory in some environments. We've corrected the issue. Please run "git pull" in your staging directory to get a new copy of vectr-install.sh or alternatively specify an installation directory different from the default.

thebleucheese commented 4 years ago

Please reopen if you continue to have issues - the updated installer scripts should correct this issue, and the next major VECTR release will simplify this process.