Notes On Installing and Running Diaspora: Difference between revisions

From diaspora* project wiki
(→‎Things to Know: wiki-fied, make key points readable at first glance)
(Redirected page to Installation)
 
(7 intermediate revisions by 3 users not shown)
Line 1: Line 1:
== Introduction ==
#REDIRECT [[Installation]]
Diaspora is run on a network of connected servers, or "pods." This document contains technical information for installing the necessary software to run a pod yourself, either for development, or as a new pod on the Diaspora network.
 
If you just want to use Diaspora, you don't need to set up your own pod -- you can join an [http://podupti.me existing pod] running the Diaspora software. The pod you join could be one run by a friend, your university, or the official pod, run by the project’s founders, at joindiaspora.com. All of the Diaspora pods communicate and make up the Diaspora Network.
 
If you still want to run your own pod... we salute you. Read on.
 
'''For OS-Specific and service-specific guides, [[:Category:Installation|check out this page]].'''
 
== Things to Know ==
 
# '''The install is a bit complex, but we're here to help'''<br>If you run into problems, please visit us in [[How_We_Communicate#IRC|our IRC channels]] on Freenode.
# '''Diaspora* is developed utilizing latest web standards'''<br>Therefore UX is best with recent browsers, so please update your Firefox, Opera, Chrome or Safari to the newest version. We do not currently support any version of Internet Explorer, though we won't reject any [[Getting Started With Contributing|contributions attempting to change that]] circumstance.
# '''Diaspora* mandates HTTPS'''<br>as we encrypt communication amongst servers and to the client browsers. You can get a free SSL certificate from [http://www.startssl.com/ StartSSL]. You’ll need to reference the certificate in your webserver configuration file.
 
{{Note
|'''The use of self-signed certificates is discouraged'''<br>While you can certainly get up and running with your own pod by using a self-signed SSL certificate, your pod may not be able to communicate with all other pods. It is therefore recommended that you use a certificate issued from a trusted Certificate Authority. Unfortunately, this also means that CaCert certificates won’t work. They are not (yet) part of most certificate bundles.}}
 
== Pointing out the obvious ==
 
{{Serious
|'''Do not start anything as root if it's not explicitly requested by this guide.''' <br>Just ''use your normal user'' - or even better - ''create a separate user'' for Diaspora*.}}
 
We frequently see people doing everything as ''root''. If you think that's a good idea: '''It's not.''' It's the worst thing you can do! Not only is it a security risk, it also violates all sorts of best-practices. See [http://unix.stackexchange.com/a/29165 this comment] for a short rationale on that topic.
 
== Preparing your system ==
In order to run Diaspora, you will need to install the following dependencies (specific instructions follow):
 
* Build tools - Packages needed to compile the components that follow.
* [http://www.ruby-lang.org Ruby] - The Ruby programming language. (We’re developing mostly on '''1.9.2''' and support for '''1.8.7''' will be dropped soon.)
* [http://rubygems.org/ RubyGems] - A package manager for Ruby code that we use to download libraries (“gems”) that Diaspora uses.
* [http://gembundler.com/ Bundler] - A gem management tool for Ruby projects.
* [http://www.mysql.com MySQL] - Backend storage engine.
* Or: [http://www.postgresql.org/ PostgreSQL] - Backend storage engine.
* [http://www.sqlite.org SQLite3] - Relational database management system
* [http://www.openssl.org/ OpenSSL] - An encryption library.
* [http://curl.haxx.se/ libcurl] - A library to make HTTP requests (and much more).
* [http://www.imagemagick.org/ ImageMagick] - An image processing library we use to resize uploaded photos.
* [http://git-scm.com/ Git] - A version control system, which you will need to download the Diaspora source code from GitHub.
* [http://redis.io/ Redis] - A persistent key-value store that we use via [https://github.com/defunkt/resque Resque] for background job processing.
 
Feel free to take a look at the [[Installation-Guides|distributions and services]] listed for OS-specific/service-specific instructions to prepare your system. After you’re done following those instructions, come back here and move on to:
 
== Getting Diaspora Source ==
Our code is hosted at GitHub. Our test suite is run at [http://travis-ci.org/#!/diaspora/diaspora Travis CI], you should check build status and verify your Ruby/DB combo are green in the master branch and pass all tests before you pull code.
 
To get a copy of the Diaspora source from the master branch, use the following command:
 
<pre>git clone -b master git://github.com/diaspora/diaspora.git && cd diaspora</pre>
 
If you have never used GitHub before, their [http://help.github.com/ help desk]
has a pretty awesome guide for getting set up.
 
If you already cloned the repository get sure to checkout the master branch with
 
<pre>git checkout master</pre>
 
== Installing Diaspora ==
=== Preparations ===
Depending on the database you want to use, add either `DB="mysql"` for MySQL or `DB="postgres"` for PostgreSQL before each command starting with `bundle…`, or export the environment variable: `export DB="mysql"` for MySQL or `export DB="postgres"`. (If you want to have both database types available for easy switching, you can either skip this step or use `DB="all"`.)
=== Install Required Gems ===
To start the app server for the first time, you need to use Bundler to install
Diaspora's gem depencencies.  Run (from Diaspora's root directory):
 
<pre>bundle install --without development test heroku</pre>
 
Bundler will also warn you if there is a new dependency and you
need to bundle install again.
 
NOTE: If you don't get a '''green success line''' at the end, double check if you've installed all dependencies. If you can't figure it out feel free to ask for help at the mailing list or the [[IRC Channel| How we use IRC]].
 
NOTE: If you want to do any development run just `bundle install`
 
NOTE: If you are on Ruby 1.9.2 and get an error such as "invalid byte sequence in US-ASCII (ArgumentError)" then you need to set your system locale to UTF-8. [https://github.com/siefca/i18n-inflector/issues/3 This GitHub bug report] on the gem that causes the problem has steps for doing so on Ubuntu.
 
NOTE: If you get "Could not get Gemfile" make sure you are in the diaspora directory (`cd diaspora`) you just cloned.
 
NOTE: If you do any other rails development on your machine, you will probably
want to either run `bundle install --path vendor` instead to install the gems in your local diaspora
directory to avoid conflicts with your existing environment, or use an [https://rvm.beginrescueend.com RVM] gemset.
=== Configure Diaspora ===
Diaspora needs to know what host it's running on. Copy `config/diaspora.yml.example` to `config/diaspora.yml` <pre>cp config/diaspora.yml.example config/diaspora.yml</pre>, put your external url into the url field, section environment and make any other needed configuration changes.
 
=== Background ===
Diaspora is a Rails-app and as such it has different running modes.
The default is "development mode" in which some performance features such as
source code caching are disabled. The other mode is "production mode" which is best for
actually running a pod. If you want just a test installation to develop for Diaspora,
keep the defaults.  However, if you plan to actually host a pod choose production mode.
 
If you want to run production mode:
 
* Edit rails_environment in the server section in config/diaspora.yml
* Change the `environment.assets.serve` setting to `true` in the `config/diaspora.yml` file. With this setting enabled Diaspora can take advantage of Rails' ability to serve static content like images and .css files from the application's /public directory. However, Rails is not a webserver, so a better option would be to leave `environment.assets.serve` set to `false` and instead install a true webserver such as Apache or Nginx alongside Diaspora and modify that webserver’s configuration to serve the static content itself:
==== Apache 2 ====
<pre>
<VirtualHost *:80>
  ServerName diaspora.mydomain.com
  DocumentRoot /diaspora_root/public
  <Directory /diaspora_root/public>
      Allow from all
      Options -MultiViews
  </Directory>
</VirtualHost>
</pre>
 
For a more advanced configuration have a look at [https://gist.github.com/719014 this Gist].
 
'''OSX Server Note:''' If you wish to use Apache built into OSX Server, use Server Admin to create a site on port 443.  A file should be created in the directory `/etc/apache2/sites/` with a name like "000X_any_443_domain.com.conf".  The above proxy settings will allow you to continue to use your existing web services alongside the Diaspora installation.
 
==== Nginx ====
Get inspired by our [[Nginx Configuration]].
==== lighttpd ====
 
See [[Using lighttpd as webserver]] for an example configuration.
 
=== Configuring SSL ===
As noted previously, you will need to configure NGINX to point to your SSL certificate (procured from either [http://startssl.com StartSSL] or [http://www.sslshopper.com elsewhere].
 
'''NOTE:''' Certificates issued from StartSSL will probably also require that the StartSSL intermediate certificate be concatenated in order for some pods to communicate properly. The following link will help you create a properly concatenated certificate for use by NGINX: [http://blog.dembowski.net/2010/02/25/startssl-and-nginx/ StartSSL and NGINX]
 
'''NOTE:''' If you are serving through a reverse proxy, you will need to set the `X_FORWARDED_PROTO` header to `https` on your reverse proxy server.  The NGINX and Apache example configurations show how to do this.  Failure to set this header will lead to a redirect loop.
 
Take note: We upgrade all port 80 requests to port 443.  We recommend that you do the same.
 
 
'''OSX Server Note:''' If you use startssl to obtain both a private key and a certificate don't forget to decrypt the private key using the following command `openssl rsa -in ssl.key -out ssl.key`.  Import the decrypted key (ssl.key) and a certificate (ssl.crt) file into Server Admin by dragging the files into the Certificate manager found here: Server Admin>Web>Site>example.com>Security>Manage Certificates>Import Certificate Identity.  If the certificate & key are valid the certificate should be 'blue'.  Once imported, the certificate can then be selected as the security for the site.
 
'''Different certificates''' Make sure that your top level domain (e.g. example.com if your pod is pod.example.com) hands out the _same_ certificate as your actual pod URL. The communication with other pods (or applications, like [http://www.cubbi.es cubbi.es] might not work otherwise.
 
=== Set up the database ===
 
'''Note for PostgreSQL users:''' If you are running Diaspora with PostgreSQL, beware that having [http://www.postgresql.org/docs/9.1/interactive/runtime-config-connection.html#GUC-SSL the ssl setting] turned on in the PostgreSQL config has been causing problems for several people.  We recommend turning it off unless you know what you're doing.
 
You need to configure the database settings. Copy config/database.yml.example to config/database.yml <pre>cp config/database.yml.example config/database.yml</pre>
and edit it properly.
 
After that, run <pre>bundle exec rake db:create</pre> for development mode or
<pre>RAILS_ENV=production bundle exec rake db:create</pre> for production mode
to create the needed database (or you could instead create the database manually.)
If you want to create it manually make sure you choose utf8 as charset and utf8_bin as collation.
 
Now you need to create the necessary tables. To do so run
<pre>bundle exec rake db:schema:load</pre> for development mode or
<pre>RAILS_ENV=production bundle exec rake db:schema:load</pre> for production mode.
'''Warning:''' This will empty your database, on update use `db:migrate` instead of `db:schema:load`!
 
=== Set up services ===
 
If you want to connect your pod to other services like Twitter, Tumblr or Facebook read instructions [[Integrating_Other_Social_Networks|integrating other Social Networks]].
 
== Running Diaspora ==
 
To turn on the server use the command `./script/server` from the working directory.
 
This will start Unicorn and Resque workers. The application is then available at http://your_pod:3000. You can change the port by either editing server.port in config/diaspora.yml or by setting up a reverse proxy (see above) if you want to run Diaspora at a subdomain or use HTTPS more easily.
 
Note: Ensure your database servers (Redis and MySQL or PostgreSQL) are running before trying to start the server.
 
Once Diaspora is running, just open it up in a web browser and sign up for an account. 
 
'''Note:''' If you are running a 'production' installation and requests to the /assets directory return a HTTP 404 error to your client, run `RAILS_ENV=production DB="mysql" bundle exec rake assets:precompile` for MySQL or `RAILS_ENV=production DB="postgres" bundle exec rake assets:precompile` for PostgreSQL after each git pull. If you get a 500 page installation try restarting Diaspora after that.
 
'''Note:''' If you are running a 'production' installation and you do not see any images hosted, but the content loads fine, ensure that your reverse proxy is serving them. If you sure you don't want to setup a reverse proxy ensure that you have set your `environment.assets.serve` setting turned to `true` everywhere in your `diaspora.yml`.
 
== Updating Diaspora ==
 
Read the Changelog!
 
Change into the Diaspora root folder and run
 
<pre>git pull origin master</pre>
 
If the update changes the Gemfile or Gemfile.lock files, for MySQL run
 
<pre>DB="mysql" bundle install --without development test heroku</pre>
 
or for PostgreSQL:
 
<pre>DB="postgres" bundle install --without development test heroku</pre>
 
Now kill your running Diaspora instance.
 
In order to apply any new schema always run
 
<pre>DB="mysql" bundle exec rake db:migrate</pre>
 
for MySQL, or
 
<pre>DB="postgres" bundle exec rake db:migrate</pre>
 
for PostgreSQL.
 
Or if you you run in production mode
 
<pre>RAILS_ENV="production" DB="mysql" bundle exec rake db:migrate</pre>
 
for MySQL, or
 
<pre>RAILS_ENV="production" DB="postgres" bundle exec rake db:migrate</pre>
 
for PostgreSQL.
 
Now start Diaspora again.
 
After each update run:
 
<pre>DB="mysql" bundle exec rake assets:precompile / DB="postgresql" bundle exec rake assets:precompile</pre>
 
== Appendix ==
=== Testing ===
Normally you don't need this if you aren't developing for Diaspora, just skip it :)
 
Diaspora’s test suite uses [http://rspec.info/ Rspec], a behavior driven testing framework. To run all tests execute: `rake`. Note that some of our tests require a display to be attached; if you just want to run the command-line tests, do `rake spec`.
=== Read-Only Installation ===
The directories 'tmp', 'public/uploads' and 'log' must be writable by the user running Diaspora even in a read-only installation.
 
Some of Diaspora's web content in the public/ folder  is generated at runtime. In order to create a read-only installation, this content must be generated at install time instead.
 
Run sass/haml and create e. g.,  public/stylesheets/{application,ui,sessions}.css:
<pre>
bundle exec thin -d --pid log/thin.pid start
wget http://localhost:3000; rm index.html
bundle exec thin --pid log/thin.pid stop
</pre>
 
Precache public/assets/*gz files:
<pre>bundle exec rake assets:precompile</pre>
After these commands  also the *public/* folder  can be read-only (although *public/uploads* need to be writable, see above).
 
[[Category:Podmin]]
[[Category:Installation]]

Latest revision as of 23:21, 19 July 2013

Redirect to: