Switch to unified view

a/Allura/docs/install.rst b/Allura/docs/install.rst
...
...
131
  If you get errors running these, it's likely because rabbit isn't running. It can be run as a daemon (instructions vary per architecture) or directly from a console window, e.g.::
131
  If you get errors running these, it's likely because rabbit isn't running. It can be run as a daemon (instructions vary per architecture) or directly from a console window, e.g.::
132
132
133
        $ cd <rabbitmq_server_directory> # not needed on MACOS
133
        $ cd <rabbitmq_server_directory> # not needed on MACOS
134
        $ sudo rabbitmq-server
134
        $ sudo rabbitmq-server
135
135
136
SOLR server
137
  This is our search and indexing server.  We have a custom config in
138
  ~/src/forge/solr_config::
139
140
      (anvil)~/<path_to_solr>/example$ java -Dsolr.solr.home=$(cd;pwd)/src/forge/solr_config -jar start.jar
141
136
Forge "reactor" server
142
Forge "reactor" server
137
  This is the server that will respond to RabbitMQ messages.  To set it up to
143
  This is the server that will respond to RabbitMQ messages.  To set it up to
138
  receive messages, you'll need to run the following commands::
144
  receive messages, you'll need to run the following commands::
139
145
140
      (anvil)~/src$ cd forge/Allura
146
      (anvil)~/src$ cd forge/Allura
...
...
144
Forge SMTP server
150
Forge SMTP server
145
  This server routes messages from email addresses to tools in the forge::
151
  This server routes messages from email addresses to tools in the forge::
146
    
152
    
147
      (anvil)~/src/forge/Allura$ paster smtp_server development.ini
153
      (anvil)~/src/forge/Allura$ paster smtp_server development.ini
148
154
149
SOLR server
150
  This is our search and indexing server.  We have a custom config in
151
  ~/src/forge/solr_config::
152
153
      (anvil)~/<path_to_solr>/example$ java -Dsolr.solr.home=$(cd;pwd)/src/forge/solr_config -jar start.jar
154
155
TurboGears application server
155
TurboGears application server
156
  This is the main application that will respond to web requests.  We'll get into
156
  This is the main application that will respond to web requests.  We'll get into
157
  details later.
157
  details later.
158
158
159
In order to initialize the forge database, you'll need to run the following::
159
In order to initialize the forge database, you'll need to run the following::