Project

General

Profile

Web Server Installation » History » Version 10

Amber Herold, 04/02/2010 02:14 PM

1 1 Amber Herold
h1. Web Server Installation
2
3
4 6 Amber Herold
5 1 Amber Herold
The following applies to the computer that will host the web-accessable image viewers ( a part of dbem tools) and project manager (a part of project tools).
6
7 9 Amber Herold
h2. Differences between Linux flavors
8
9 1 Amber Herold
Different Linux flavors often put web server and mysql-related files in different locations. This can be confusing. From experience, we found the equivalent on CentOS vs SuSE. Here we list them for reference. If your system use a different naming and you are willing to share your experience, please send us the list. We will add it here:
10
11
Table 4.4. Different File locations and Commands on CentOS vs SUSE
12
13 9 Amber Herold
|_.File or Command Head|_.CentOS|_.SuSE|
14
| php.ini|/etc/| /etc/php5/apache2/|
15
| httpd.conf|/etc/httpd/conf/|/etc/php5/apache2/|
16
| default document_root|/var/www/html/|/srv/www/htdocs/|
17
| apache start/stop/restart command head|/etc/init.d/httpd|/etc/init.d/apache2|
18
| mysql start/stop/restart command head|/etc/init.d/mysqld|/etc/init.d/mysql|
19
20
h2. Prerequisites for dbemtools, projecttools, and mrctools extension
21
22 1 Amber Herold
The myamiweb files are mostly php scripts that run at the web server. The following packages are required before installation of myamiweb and the mrc extension that handles the display of mrc files. Some of these packages may be found on the SuSE Linux DVD or included in common package repository. MySQL and the Apache Web Server can be downloaded from their respective websites.
23
24 2 Amber Herold
Table 4.5.Prerequisite packages for myamiweb
25 1 Amber Herold
26 9 Amber Herold
|_.Name:|_.Download site:|_.yum package name|_.SuSE rpm name|
27
| Apache| "www.apache.org":http://www.apache.org| httpd| apache2|
28
| php| "www.php.net":http://www.php.net| php| php|
29
| php-devel*| "rpmfind.net/linux/RPM/Development_Languages_PHP.html":http://rpmfind.net/linux/RPM/Development_Languages_PHP.html| php-devel| php-devel|
30
| php-gd (including GD library, its development libraries and header *)| "www.php.ned/gd":http://www.libgd.org  (Use gd2)| php-gd, gd-devel| php-gd,gd-devel|
31
| fftw3 library (including development libraries and header *)| "www.fftw.org":http://www.fftw.org  (Use fftw3.x)| fftw3-devel| fftw3-devel|
32
33 1 Amber Herold
* mrctools are compiled and added to php extension with php-devel package. Mrctools use GD and FFTW3 that need to be compiled from their development libraries while the extension is compiled. If GD and FFTW3 sources were downloaded and compiled directly on your computer, these development files are included. If (as in most cases) GD and FFTW3 are installed from rpm, they are not included. An error message will appear when you attempt to compile mrctools. In this case, you will need separate download and installation of GD-devel and FFTW3-devel. Search http://rpmfind.net/linux/rpm2html/ for GD-devel and FFTW3-devel for the rpm distribution needed for your system.
34 9 Amber Herold
35
h2. Installation tools
36 1 Amber Herold
37
Use the installation tools available for your linux distribution.
38
39 2 Amber Herold
    * For example, Use yum utility to install.
40
    * For example, Use the SuSE Linux YaST2 utility or zypper (openSuSE 10.2 and above) to install.
41 10 Amber Herold
    * "A list of required CENTOS rpms and instruction":http://emg.nysbc.org/bb/viewtopic.php?t=238 can be found at dbemtools bulletin board at leginon.org.
42 1 Amber Herold
43
PHP, PHP-devel, gd, and fftw3
44
45
Install the packages using your installation tools if available. For example, to install gd as php extension you may use
46
47
CentOS> yum install php-gd
48
SuSE10.2 and above> zypper install php-gd
49
50 6 Amber Herold
h2. Configure php.ini
51 1 Amber Herold
52
Edit the following two sections in php.ini (found as /etc/php.ini on CentOS and /etc/php5/apache2/php.ini on SuSE) so that they look like the following:
53
54
register_argc_argv = On
55
56
short_open_tag = On
57
58
max_execution_time = 300     ; Maximum execution time of each script, in seconds
59
max_input_time = 300     ; Maximum amount of time each script may spend parsing request data
60
memory_limit = 256M      ; Maximum amount of memory a script may consume (8MB)
61
62
You may want to increase max_input_time and memory_limit if the server is heavily used. At NRAMM, max_input_time=600 and memory_limit=4000M.
63
Apache Web Server
64
65 4 Amber Herold
1. Install the Apache Web Server with the YaST or yum utility.
66 7 Amber Herold
67 1 Amber Herold
2. Find "httpd.conf".
68 7 Amber Herold
This is /etc/httpd/conf/httpd.conf on CentOS and /etc/php5/apache2/httpd.conf on SuSE
69
70 1 Amber Herold
3. Edit the "httpd.conf" configuration file to look like the following:
71 7 Amber Herold
<pre>
72
DirectoryIndex index.htm index.shtm index.html index.shtml index.php
73
</pre>
74 2 Amber Herold
75 7 Amber Herold
*Note:* It may be possible to edit httpd.conf in YaST2 as well.
76 1 Amber Herold
77 4 Amber Herold
4. Restart the web server.
78 1 Amber Herold
79 3 Amber Herold
<pre>
80 1 Amber Herold
      apachectl restart
81
           or
82
      /etc/init.d/httpd restart     (ON CentOS)
83
           or
84
      /etc/init.d/apache2 restart   (ON SuSE)
85
86
      If you want to start the web server automatically at boot on SuSE
87
88
       SuSE >chkconfig apache2 on
89 3 Amber Herold
</pre>                  
90 1 Amber Herold
91
Check php information
92
93
Create the following info.php in your web server document root directory (/var/www/html on CentOS. /srv/www/htdocs on SuSE. You can find its location in httpd.conf mentioned above under the line starting DocumentRoot).
94
95 7 Amber Herold
<pre>
96 1 Amber Herold
<?php
97
phpinfo();
98
?>
99 7 Amber Herold
</pre>
100 1 Amber Herold
101
Visit this page at http://yourhost/info.php
102
103
You will see comprehensive tables of php and apache information, including the location of the addition .ini files, extension, include path, and what extension is enabled.
104
105
Here is an example screen shot of the part of the info.php page that tells you where php.ini and other configuration files are.
106
107 6 Amber Herold
h2. mrctools Installation
108 1 Amber Herold
109
mrctools are installed as php extension and are required for displaying mrc files live on the web browser.
110
Install php-devel packages on the web server if missing:
111
112
You can check whether php-devel is installed by typing
113
114 7 Amber Herold
<pre>
115 1 Amber Herold
 >phpize
116 7 Amber Herold
</pre>
117 1 Amber Herold
118
Follow the instruction for your specific Linux distribution.
119
120
For example, SUSE users can use YaST or zypper to install them
121
php-GD/FFTW3-devel
122
123
Follow instructions from the download site. These may be included already. If not, mrctools installation will fail.
124
mrctools Installation
125
126
mrctools are installed from php devel directory. This is usually /usr/include/php/ext where you will find other php extension source such as gd. After the installation, mrc.so should be placed in php's extension directory (Look for "extension_dir" in http://your_host/info.php
127
128 4 Amber Herold
1. Download dbem tools from http://emg.nysbc.org/software/mrctools.
129
2. Follow the instruction at http://emg.nysbc.org/software/mrctools/mrc_so.php for installation and testing. The next session about checking php information can also help debugging the installation
130 1 Amber Herold
131
Check php information
132
133
Visit or refresh http://yourhost/info.php which you created earlier. It should have a section looking like this (The version should correspond to what you've just installed):
134
135
If mrc is not listed, the extension did not get added at the right order.
136
Alternative approach if mrc module does not show up in info.php output
137
138
1. find in the info.php web page the location of "additional .ini files parsed" in the first table (such as /etc/php.d/conf.d/*).
139 7 Amber Herold
140 4 Amber Herold
2. Go to the directory and make a copy of any ini file to use as a template for mrc.ini
141 7 Amber Herold
142 3 Amber Herold
<pre>
143 1 Amber Herold
      >cd [additional_ini_directory]
144
      >cp gd.ini mrc.ini
145
</pre>
146 7 Amber Herold
147 3 Amber Herold
3. Edit mrc.ini to the following
148 7 Amber Herold
149 3 Amber Herold
<pre>
150 1 Amber Herold
      ; comment out next line to disable mrc extension in php
151
      extension=mrc.so
152
</pre>
153 3 Amber Herold
154 5 Amber Herold
4. Comment out mrc extension from php.ini (found in /etc/php.ini/ on a typical PHP installation)
155 7 Amber Herold
156 1 Amber Herold
<pre>
157 3 Amber Herold
      ;extension=mrc.so
158 1 Amber Herold
</pre>
159 7 Amber Herold
160 3 Amber Herold
5. restart your webserver
161 7 Amber Herold
162 1 Amber Herold
<pre>
163
      > /etc/init.d/httpd restart
164
</pre>
165
166 6 Amber Herold
h2. Web Interface (myamiweb) Linux Installation
167
168 1 Amber Herold
php and java scripts for viewing images and Leginon information through the web server.
169
170
171
1. Move the myami/myamiweb directory to your Apache web directory
172 7 Amber Herold
173 6 Amber Herold
Example:
174 3 Amber Herold
<pre>
175 1 Amber Herold
> cd [webdirectory]   // /var/www/html in this example
176 6 Amber Herold
> cp [path_to_myami_download_location]/myami/myamiweb .
177
</pre>
178 7 Amber Herold
179 3 Amber Herold
2. Copy config.php.template to config.php and edit the latter by adding these MySQL parameters:
180 6 Amber Herold
"config.php" should be located in /var/www/html/myamiweb/ on CentOS and /srv/www/htdocs/myamiweb/ on SuSE.
181 7 Amber Herold
182 1 Amber Herold
<pre>
183 6 Amber Herold
<?php
184
// --- define myamiweb tools base --- //
185 1 Amber Herold
186 6 Amber Herold
// This should be changed if the myamiweb directory is located 
187
// in a sub-directory of the Apache web directory.
188
// ex. myamiweb is in /var/www/html/applications/myamiweb/ then
189
// change to  define('BASE_PATH',"applications/myamiweb");
190
define('BASE_PATH',"myamiweb"); 
191 3 Amber Herold
192 6 Amber Herold
// Administrator email address
193
define('ADMIN_EMAIL', "example@scripps.edu");
194 3 Amber Herold
195 6 Amber Herold
// --- Set your MySQL database server parameters
196
define('DB_HOST', "localhost");		// DB Host name 
197
define('DB_USER', "usr_object");	// DB User name
198
define('DB_PASS', "");		        // DB Password
199
define('DB_LEGINON', "leginondb");	// Leginon database name
200
define('DB_PROJECT', "projectdb");	// Project database name
201 1 Amber Herold
</pre>
202
203 8 Amber Herold
* Enable the processing plug-in by uncommenting out the following line in the file`myamiweb/config.php`
204
205
<pre>
206
addplugin("processing");
207
</pre>
208
209
* Copy `myamiweb/processing/config_processing.php.template` to `myamiweb/processing/config_processing.php`
210
* Edit `myamiweb/processing/config_processing.php`
211
212
<pre>
213
$PROCESSING_DB_HOST = "your_db_host";
214
$PROCESSING_DB_USER = "usr_object";
215
$PROCESSING_DB_PASS = ""; 
216
$PROCESSING_DB = "";
217
</pre>
218
219
Remember that the last line should be kept empty as this will be set dynamically.
220
We will not include the processing host or cluster registration now. It is covered in the last part of this document.
221
222 6 Amber Herold
3. Test the set-up by visiting http://yourhost/myamiweb