Template:Installation/Debian/Common: Difference between revisions

From diaspora* project wiki
Line 6: Line 6:
{{Note|Debian fournit une ancienne version de cURL qui fait planter vos workers Sidekiq workers soumis à une trop forte charge. Si cela se produit assurez-vous que vous avez un libcurl compilé qoit avec le support c-ares soit avec le résolveur --enable-threaded-resolver. Vous trouverez davantage d'informations sur [https://github.com/diaspora/diaspora/issues/4202 cette page en anglais qui traite de ce problème]}}
{{Note|Debian fournit une ancienne version de cURL qui fait planter vos workers Sidekiq workers soumis à une trop forte charge. Si cela se produit assurez-vous que vous avez un libcurl compilé qoit avec le support c-ares soit avec le résolveur --enable-threaded-resolver. Vous trouverez davantage d'informations sur [https://github.com/diaspora/diaspora/issues/4202 cette page en anglais qui traite de ce problème]}}


=== Install the database ===
=== Installer la base de données ===


Skip this step if you already have one.
Ignorez cette étape si vous avez déjà une base de données.


See the [http://wiki.debian.org/{{#switch: {{#var:DB}}|mysql=MySql|postgres=PostgreSql|mariadb=MariaDB}} Debian wiki].
Consultez le [http://wiki.debian.org/{{#switch: {{#var:DB}}|mysql=MySql|postgres=PostgreSql|mariadb=MariaDB}} wiki de Debian].


{{#ifeq: {{#var:mode}}|production|
{{#ifeq: {{#var:mode}}|production|
=== Creating a user for Diaspora ===
=== Créer un utilisateur pour Diaspora ===


As root run:
lancez en root les commandes :


{{#tag: syntaxhighlight|
{{#tag: syntaxhighlight|
Line 23: Line 23:
|lang="bash"}}
|lang="bash"}}


The rest of the guide should happen under this user!
Le reste de ce guide devrait concerner cet utilisateur !
}}
}}



Revision as of 09:54, 29 October 2014

Installer Nodejs

Suivez les instructions pour Wheezy qui se trouvent ici.

cURL

NoteNote:Debian fournit une ancienne version de cURL qui fait planter vos workers Sidekiq workers soumis à une trop forte charge. Si cela se produit assurez-vous que vous avez un libcurl compilé qoit avec le support c-ares soit avec le résolveur --enable-threaded-resolver. Vous trouverez davantage d'informations sur cette page en anglais qui traite de ce problème

Installer la base de données

Ignorez cette étape si vous avez déjà une base de données.

Consultez le wiki de Debian.



RVM

We recommend using Ruby Version Manager it will ensure you're always on the currently recommended Ruby version and cleanly separate your diaspora* installation from all other Ruby applications on your machine. If you opt for not using it ensure your Ruby version is at least 2.6.0, prior versions are incompatible. We currently recommend using the latest release of the 2.7 series.

Install RVM

As the user you want to run diaspora* under, that is not as root, run:

curl -L https://s.diaspora.software/1t | bash

and follow the instructions. If you get GPG signature problems, follow the instructions printed by the command. Running the 'gpg --recv-keys' command with 'sudo' should not be necessary. If those commands give you permission denied errors, change them to 640 for all files and 750 for all folders in the .gnupg folder.

Set up RVM

Ensure the following line is in your ~/.bashrc:

[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"

Now run source ~/.bashrc in the terminal(s) you are using for this guide.

If you don't have sudo installed or your current user doesn't have the privileges to execute it, run:

rvm autolibs read-fail

The next command will check if all dependencies to build Ruby are installed. If these are not met, you will see a list of packages preceded by "Missing required packages:". As root install all the packages listed there for your OS. Then rerun the install command.

Ensure the currently recommend version of Ruby is installed:

rvm install 2.7


Get the source

It's time to download diaspora*! As your diaspora user run:

cd ~
git clone  https://github.com/diaspora/diaspora.git
cd diaspora

Don't miss the cd diaspora, all coming commands expect to be run from that directory!

Configuration

Copy files

cp config/database.yml.example config/database.yml
cp config/diaspora.toml.example config/diaspora.toml


Bundle

It's time to install the Ruby libraries required by diaspora*:

script/configure_bundler
bin/bundle install --full-index

This takes quite a while. When it's finished, you should see a message similar to: Bundle complete! 137 Gemfile dependencies, 259 gems now installed. If that's not the case, you should seek for help on the mailing list or the IRC channel.

Running the manual gem install command shown in the error message can sometimes show a clearer error message if the bundle command fails.

Database setup

Double check your config/database.yml looks right and run:

bundle exec rake db:create db:migrate


Start diaspora*

It's time to start diaspora*:

./script/server


Your diaspora server is now running, either on a unix socket (current default) or on http port 3000. The listening method can be configured in diaspora.toml, search for '3000' or 'listen' to find the correct line.

You will likely need to install a reverse proxy (example on github for apache2) in order to get it to be served publicly. If you are new to running rails applications you may find the diaspora components page helpful for orientation.

Backup

WarningWarning:You have to do backups of your pod data. If you lose your data, you won't be able to use the combination of your old username and old domain ever again. Make sure to store the backups on a different server, or at least on a different hard drive.
For details on how to do backups, see Pod data backup.

Further reading