Template:Installation/Fedora/Common: Difference between revisions

From diaspora* project wiki
No edit summary
No edit summary
 
(13 intermediate revisions by 2 users not shown)
Line 6: Line 6:


{{#tag:syntaxhighlight|
{{#tag:syntaxhighlight|
yum install {{#switch: {{#var:DB}}|mysql=mysql-server|postgres=postgresql-server}}
{{#var:pkg_command}} install {{#switch: {{#var:DB}}|mysql=mysql-server|postgres=postgresql-server|mariadb=mariadb-server}}
{{#ifeq: {{#var:DB}}|postgres|postgresql-setup initdb|}}
{{#ifeq: {{#var:DB}}|postgres|postgresql-setup initdb|}}
systemctl enable {{#switch: {{#var:DB}}|mysql=mysqld|postgres=postgresql}}
systemctl enable {{#switch: {{#var:DB}}|mysql=mysqld|postgres=postgresql|mariadb=mariadb}}
systemctl start {{#switch: {{#var:DB}}|mysql=mysqld|postgres=postgresql}}
systemctl start {{#switch: {{#var:DB}}|mysql=mysqld|postgres=postgresql|mariadb=mariadb}}
systemctl enable redis
systemctl enable redis
systemctl start redis
systemctl start redis
|lang=bash}}
|lang=bash}}


{{#ifeq: {{#var:mode}}|production|
=== Creating a user for Diaspora ===
=== Creating a user for Diaspora ===


As root run:
As root run:


<syntaxhighlight lang="bash">
{{#tag: syntaxhighlight|
adduser diaspora
adduser --disabled-login diaspora
# If you already created a user and want to disable login for it:
usermod -L diaspora
# Then switch to it:
su diaspora
su diaspora
cd ~
cd ~
</syntaxhighlight>
|lang="bash"}}


{{User:MrZYX/WIP:Installation/RVM}}
The rest of the guide should happen under this user!
{{User:MrZYX/WIP:Installation/Common}}
}}
<includeonly>
{{Installation/RVM}}
{{Installation/Common}}
</includeonly>
<noinclude>
[[Category:Installation-Templates]]
</noinclude>

Latest revision as of 00:07, 3 September 2016

Install the database

If you already have one skip this step.

As root run:

 install 

systemctl enable 
systemctl start 
systemctl enable redis
systemctl start redis