Skip to content

CentOSSetup)

kwentenable edited this page May 28, 2020 · 4 revisions

Installation Commands for Centos7

Create a Python Virtual Environment & install YAML using the pip command

  1. Create a virtual environment
  2. python3 -m venv [your venv name]
  3. Activate your virtual environment
  4. source [venv name]/bin/activate
  5. Install YAML via the pip command
  6. pip3 install pyyaml
  7. Clone the git repo
  8. git clone https://github.com/tenable/integration-jira-cloud.git

The same process as outlined for MacOS is followed by substituting the following Centos7 specific commands

  • -yum install epel-release
  • -yum install python34 python-pip For other linux Operating Systems - add additional repos that would include python 3 and python-pip packages. This will vary from different flavors of the linux OS but the idea is the same. Below is the ubuntu equivalent
  • $ sudo apt-get install software-properties-common
  • $ sudo add-apt-repository ppa:deadsnakes/ppa
  • $ sudo apt-get update
  • $ sudo apt-get install python3.6

pip install -U pip

  • pip install -U virtualenv
  • virtaulenv --python=python3.x <env_name>
  • cd env_name && source bin/activate
  • pip3 install pyyaml
  • pip3 install /root//integration-jira-cloud
  • Tenable-jira /path to yaml file/jira-cloud.yaml
Clone this wiki locally