mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-09 20:40:17 +02:00
Add Time Zone table instructions to Install Docs
This commit is contained in:
parent
4ea824fe71
commit
000dafc5e6
@ -74,6 +74,19 @@ Alliance Auth needs a MySQL user account and database. Open an SQL shell with `m
|
|||||||
CREATE DATABASE alliance_auth CHARACTER SET utf8;
|
CREATE DATABASE alliance_auth CHARACTER SET utf8;
|
||||||
GRANT ALL PRIVILEGES ON alliance_auth . * TO 'allianceserver'@'localhost';
|
GRANT ALL PRIVILEGES ON alliance_auth . * TO 'allianceserver'@'localhost';
|
||||||
|
|
||||||
|
Add timezone tables to your mysql installation:
|
||||||
|
|
||||||
|
mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -p mysql
|
||||||
|
|
||||||
|
```eval_rst
|
||||||
|
.. note::
|
||||||
|
You may see errors when you add the timezone tables. To make sure that they were correctly added run the following commands and check for the ``time_zone`` tables::
|
||||||
|
|
||||||
|
mysql -u root -p
|
||||||
|
use mysql;
|
||||||
|
show tables;
|
||||||
|
```
|
||||||
|
|
||||||
Close the SQL shell and secure your database server with the `mysql_secure_installation` command.
|
Close the SQL shell and secure your database server with the `mysql_secure_installation` command.
|
||||||
|
|
||||||
## Auth Install
|
## Auth Install
|
||||||
|
Loading…
x
Reference in New Issue
Block a user