Install on Window (Dev)

A full guide to install and setup M4 on a Windows machine. This setup is not designed for production use.

Work in Progress. Feel free to contribute with a Pull Request!

Install Python

Install vcc++ 2015 and build tools

More information on building python modules on windows here: https://wiki.python.org/moin/WindowsCompilers

Install getttext

Install zanata-cli

reboot

Install RabbitMQ

Follow the instruction here: https://www.rabbitmq.com/install-windows.html

rabbitmqctl add_user m4 changeme
rabbitmqctl add_vhost m4
rabbitmqctl set_user_tags m4 m4
rabbitmqctl set_permissions -p m4 m4 ".*" ".*" ".*"

Install lessc

npm install lessc -g

Setup SNMP

See: https://blog.paessler.com/how-to-enable-snmp-on-your-operating-system

Allow localhost with community “public”.

This will allow M4 to poll your local SNMP deamon to get some fresh data.

If you skip this step, the data point imported later will generate errors.

Setup M4

pip3.5 install virtualenvwrapper-win
git clone https://github.com/dgagnon/m4system.git mym4dev
mkvirtualenv mym4dev
pip3.5 install -e .
manage migrate djangoplugins
manage migrate
manage collectstatic

Load the fixtures

python3.5 manage.py loaddata fixtures/auth.json
python3.5 manage.py loaddata fixtures/user.json
python3.5 manage.py loaddata fixtures/djcelery.json
python3.5 manage.py loaddata fixtures/scheduler.json
python3.5 manage.py loaddata fixtures/webview.json

Run M4

start.bat

Login to M4

http://127.0.0.1:8000

m4 / Changeme1!


Last modified December 18, 2019: Simplify description (4f975ed)