Template:Installation/Fedora/Common: Difference between revisions
No edit summary |
No edit summary |
||
Line 6: | Line 6: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
yum install {{#switch {{#var:DB}}|mysql=mysql-server|postgres=postgresql-server}} | yum install {{#switch: {{#var:DB}}|mysql=mysql-server|postgres=postgresql-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}} | ||
systemctl start {{#switch {{#var:DB}}|mysql=mysqld|postgres=postgresql}} | systemctl start {{#switch {{#var:DB}}|mysql=mysqld|postgres=postgresql}} |
Revision as of 21:04, 20 June 2013
Install the database
If you already have one skip this step.
As root run:
yum install {{#switch: {{#var:DB}}|mysql=mysql-server|postgres=postgresql-server}}
{{#ifeq: {{#var:DB}}|postgres|postgresql-setup initdb|}}
systemctl enable {{#switch {{#var:DB}}|mysql=mysqld|postgres=postgresql}}
systemctl start {{#switch {{#var:DB}}|mysql=mysqld|postgres=postgresql}}
systemctl enable redis
systemctl start redis
Creating a user for Diaspora
As root run:
adduser diaspora
su diaspora
cd ~
User:MrZYX/WIP:Installation/RVM User:MrZYX/WIP:Installation/Common