--- layout: page title: "Advanced Installation" description: "Brief advanced installation tutorials." date: 2015-9-1 22:57 sidebar: false comments: false sharing: true footer: true --- Here are some general tutorials on how to setup some of the more advanced deployments that are frequently requested.
Installation with Docker is straightforward. Adjust the following command so that /path/to/your/config/
points at the folder where you want to store your config and run it:
This will launch Home Assistant and serve its web interface from port 8123 on your Docker host.
When using boot2docker on OS X you are unable to map the local time to your Docker container. Replace -v /etc/localtime:/etc/localtime:ro
with -e "TZ=America/Los_Angeles"
(replacing America/Los_Angeles with your timezone)
Debian based systems, including Ubuntu and Raspbian for the Raspberry Pi use an application called Init to manage daemon services. Init will launch init scripts that are located in the directory /etc/init.d/
. A sample init script for Debian based systems is maintained in this project.
To install this script, download it, tweak it to you liking, and install it by following the directions in the header. This script will setup Home Assistant to run when the system boots. To start/stop Home Assistant manually, issue the following commands: ```bash sudo service hass-daemon start sudo service hass-daemon stop ```
When running Home Assistant with this script, the configuration directory will be located at /var/opt/homeassistant
. This directory will contain a verbose log rather than simply an error log.
When running daemons, it is good practice to have the daemon run under its own user name rather than the default user's name. Instructions for setting this up are outside the scope of this document.
If you want that Home Assistant is lauched automatically, an extra step is needed to setup systemd
. You need a service file to control Home Assistant with systemd
.
You need to reload systemd
to make the daemon aware of the new configuration. Enable and launch Home Assistant after that.
If everything went well, sudo systemctl start home-assistant
should give you a positive feedback.
To get Home Assistant's logging output, simple use journalctl
.