Last active
December 23, 2024 06:04
-
-
Save eduffield222/2ea6e85b5fe002f8a8c963dd52feef62 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Assuming the username of the Ubuntu user is "ubuntu". | |
Preparation | |
----------- | |
``` | |
sudo apt-get update | |
sudo apt-get upgrade | |
sudo apt-get install mysql-server libmysqlclient-dev | |
``` | |
Download sentinel source code | |
---------------------------- | |
``` | |
cd ~ | |
git clone https://github.com/evan82/sentinel.git | |
Setup Configuration & Database | |
----------------------------------- | |
``` | |
cd sentinel | |
cp config.py.example config.py | |
vim config.py | |
mysql < database/001.sql | |
``` | |
Run Sentinel | |
----------------------------------- | |
``` | |
./sentinel-cli | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment