mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-23 17:27:19 +00:00
Add warning about recovery model with MSSQL Server (#6443)
* Add warning about recovery model with MSSQL Server Added warning to make users aware that the default recovery model in MSSQL server will grow the transaction log until the disk runs out of space. Suggested that users switch to simple recovery to prevent this issue. * Minor changes
This commit is contained in:
parent
6e4bb8274d
commit
9567d82553
@ -167,6 +167,10 @@ Unix Socket connections always bring performance advantages over TCP, if the dat
|
|||||||
<p class='note warning'>
|
<p class='note warning'>
|
||||||
If you want to use Unix Sockets for PostgreSQL you need to modify the `pg_hba.conf`. See [PostgreSQL](#postgresql)</p>
|
If you want to use Unix Sockets for PostgreSQL you need to modify the `pg_hba.conf`. See [PostgreSQL](#postgresql)</p>
|
||||||
|
|
||||||
|
<p class='note warning'>
|
||||||
|
If you are using the default `FULL` recovery model for MS SQL Server you will need to manually backup your log file to prevent your transaction log from growing too large. It is recommended you change the recovery model to `SIMPLE` unless you are worried about data loss between backups.
|
||||||
|
</p>
|
||||||
|
|
||||||
### {% linkable_title Database startup %}
|
### {% linkable_title Database startup %}
|
||||||
|
|
||||||
If you are running a database server instance on the same server as Home Assistant then you must ensure that this service starts before Home Assistant. For a Linux instance running Systemd (Raspberry Pi, Debian, Ubuntu and others) then you should edit the service file.
|
If you are running a database server instance on the same server as Home Assistant then you must ensure that this service starts before Home Assistant. For a Linux instance running Systemd (Raspberry Pi, Debian, Ubuntu and others) then you should edit the service file.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user