quipucords - Tool for discovery, inspection, collection, deduplication, and reporting on an IT environment. quipucords is a Python based information gathering tool. quipucords provides a server base infrastructure for process tasks that discover and inspect remote systems by utilizing Ansible while additionally looking to integrate and extract data from systems management solutions. quipucords collects basic information about the operating system, hardware, and application data for each system. quipucords is intended to help simplify some of the basic system administrator tasks that are a part of the larger goal of managing licensing renewals and new deployments.
This README file contains information about the installation and development of quipucords, as well as instructions about where to find basic usage, known issue, and best practices information.
Before installing quipucords on a system, review the following guidelines about installing and running quipucords:
- quipucords is written to run on RHEL or Centos servers.
- The system that quipucords is installed on must have access to the systems to be discovered and inspected.
- The target systems must be running SSH.
- The user account that quipucords uses for the SSH connection into the target systems must have adequate permissions to run commands and read certain files, such as privilege escalation required for the
systemctl
command. - The user account that quipucords uses for a machine requires an sh shell or a similar shell. For example, the shell cannot be a /sbin/nologin or /bin/false shell.
The Python packages that are required for running quipucords on a system can be found in the dev-requirements.txt
file. The Python packages that are required to build and test quipucords from source can be found in the requirements.txt
and dev-requirements.txt
files.
quipucords is delivered with an RPM command line tool and a server container image. The following information contains instructions for installing each of these items.
See qpc cli installation instructions for information.
To work with the quipucords code, begin by cloning the repository:
git clone [email protected]:quipucords/quipucords.git
quipucords currently supports Python 3.6. If you do not have Python on your system, follow these instructions.
Developing inside a virtual environment is recommended. Add desired environment variables to the .env
file before creating your virtual environment. You can copy .env.example
to get started.
On Mac run the following command to set up a virtual environment:
brew install pipenv
pipenv shell
pip install -r dev-requirements.txt
On Linux run the following command to set up a virtual environment:
sudo yum install python-tools
pip3 install pipenv
pipenv shell
pip install -r dev-requirements.txt
Quipucords currently supports development in both SQLite and Postgres. The default database is an internal postgres container.
Using a Postgres container:
make setup-postgres
docker ps
Using a SQLite DB:
export QPC_DBMS=SQLite
To initialize the server with Postgres, run the following command:
make server-init
Both of the above commands create a superuser with name admin
and password of qpcpassw0rd
.
To run the development server using Postgres, run the following command:
make serve
To log in to the server, you must connect to http://127.0.0.1:8000/admin/ and provide the superuser credentials.
After logging in, you can change the password and also go to some of the browsable APIs such as http://127.0.0.1:8000/api/v1/credentials/.
To use the command line interface, you can configure access to the server by entering qpc server config
. You can then log in by using qpc server login
.
If you intend to run on Mac OS, there are several more steps that are required.
- Increase the maxfile limit as described here.
- Install sshpass as described here.
- Install coreutils to obtain the gtimeout command. To do this step, run the
brew install coreutils
command. - If you are running macOS 10.13 or later and you encounter unexpected crashes when running scans,
set the environment variable
OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES
before starting the server. See the explanation for this step here. - Install gtimeout using
brew install coreutils
- If installing dependencies fails involving openssl:
brew install openssl pip uninstall pycurl PYCURL_SSL_LIBRARY=openssl pip --no-cache-dir install --install-option="--with-openssl" --install-option="--openssl-dir=$(brew --prefix)/opt/openssl" pycurl export LDFLAGS=-L/usr/local/opt/openssl/lib export CPPFLAGS=-I/usr/local/opt/openssl/include export PYCURL_SSL_LIBRARY=openssl
To lint changes that are made to the source code, run the following command:
make lint
To run the unit tests, use the following command:
make test
The quipucords container image can be created from source. This quipucords repository includes a Dockerfile that contains instructions for the image creation of the server.
You must have Docker installed to create the image and run the container. The following examples all use version 0.0.46
but any version could be used.
-
Clone the repository:
git clone [email protected]:quipucords/quipucords.git git clone [email protected]:quipucords/quipucords-ui.git
-
Optional - Build UI:
brew install yarn (if you don't already have yarn) make build-ui
NOTE: You will need to install NodeJS. See
<https://nodejs.org/>
_. -
Build the Docker image:
docker -D build . -t quipucords:0.0.46
NOTE: The need to use
sudo
for this step is dependent upon on your system configuration. -
There are many different options for running the QPC server.
A. Run the Docker image with Postgres container:
docker run --name qpc-db -e POSTGRES_PASSWORD=password -d postgres:9.6.10 export QPC_VAR_DATA=$PWD/var/data mkdir -p $QPC_VAR_DATA docker run --name quipucords --link qpc-db:qpc-link -d -e QPC_DBMS_HOST=qpc-db -p 9443:443 -v $QPC_VAR_DATA:/var/data -i quipucords:0.0.46
B. Run the Docker image with external Postgres container:
ifconfig (get your computer's external IP if Postgres is local) docker run -d --name quipucords -e "QPC_DBMS_PASSWORD=password" -e"QPC_DBMS_HOST=EXTERNAL_IP" -p 9443:443 -i quipucords:0.0.46
C. Run the Docker image with SQLite:
docker run -d --name quipucords -e "QPC_DBMS=sqlite" -p 9443:443 -i quipucords:0.0.46
D. For debugging purposes you may want to run the Docker image with the
/app
directory mapped to your local clone of quipucords and the logs mapped to a temporary directory. Mapping the/app
directory allows you to rapidly change server code without having to rebuild the container. Mapping the logs to/tmp
allows you to tail a local copy without having to exec into the container.docker run -d --name quipucords -e "QPC_DBMS=sqlite" -p 9443:443 -v /path/to/local/quipucords/:/app -v /tmp:/var/log -i quipucords:0.0.46
-
Configure the CLI by using the following commands:
qpc server config --host 127.0.0.1 qpc server login
-
You can work with the APIs, the CLI, and UI (visit https://127.0.0.1:9443 if you installed the UI in step 2 above).
-
To enter the container use the following command:
docker exec -it quipucords bash
-
If you need to restart the server inside of the container, run the following after entering the container to get the server PIDs and restart:
ps -ef | grep gunicorn kill -9 PID PID
NOTE: There are usually multiple gunicorn processes running. You can kill them all at once by listing PIDs as shown in the example above.
You can run the server locally inside of gunicorn. This can be a useful way to debug.
-
Clone the repository:
git clone [email protected]:quipucords/quipucords.git cd quipucords
-
Switch to quipucords django app module:
cd quipucords
-
Make symbolic link to ansible roles:
ln -s ../roles/ roles
-
Start gunicorn:
gunicorn quipucords.wsgi -c ./local_gunicorn.conf.py
-
Configure the CLI by using the following commands:
qpc server config --host 127.0.0.1 --port 8000 qpc server login
To report bugs for quipucords open issues against this repository in Github. Complete the issue template when opening a new bug to improve investigation and resolution time.
Authorship and current maintainer information can be found in AUTHORS.
See the CONTRIBUTING guide for information about contributing to the project.
Copyright 2017-2019, Red Hat, Inc.
quipucords is released under the GNU Public License version 3.