Project

General

Profile

Web Server Installation » History » Version 18

Amber Herold, 04/06/2010 11:44 AM

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 15 Amber Herold
h2. Web Server Prerequisites
21 9 Amber Herold
22 15 Amber Herold
The myamiweb files are mostly php scripts that run at the web server. PHP, PHP-devel, gd, and fftw3 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 1 Amber Herold
24
25 15 Amber Herold
h3. Install PHP, PHP-devel, gd, and fftw3
26
27
28 16 Amber Herold
* Use the installation tools available for your linux distribution.
29
30 15 Amber Herold
For example, to install gd as php extension you may use
31
32
<pre>
33
CentOS> yum install php-gd
34
SuSE10.2 and above> zypper install php-gd
35 1 Amber Herold
</pre>
36
37 16 Amber Herold
Likewise, use the SuSE Linux YaST2 utility or zypper (openSuSE 10.2 and above) to install.
38
"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.
39 15 Amber Herold
40 17 Amber Herold
* Use the following table to find and install the prerequisite packages required for your distribution of linux:
41 15 Amber Herold
42 17 Amber Herold
*Prerequisite packages for myamiweb*
43 15 Amber Herold
44 1 Amber Herold
|_.Name:|_.Download site:|_.yum package name|_.SuSE rpm name|
45 11 Amber Herold
| Apache| "www.apache.org":http://www.apache.org| httpd| apache2|
46 1 Amber Herold
| php| "www.php.net":http://www.php.net| php| php|
47
| php-devel*| "rpmfind.net/linux/RPM/Development_Languages_PHP.html":http://rpmfind.net/linux/RPM/Development_Languages_PHP.html| php-devel| php-devel|
48
| 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|
49 11 Amber Herold
| fftw3 library (including development libraries and header *)| "www.fftw.org":http://www.fftw.org  (Use fftw3.x)| fftw3-devel| fftw3-devel|
50 1 Amber Herold
51 18 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. More information on the gd library can be found "here":http://www.php.net/manual/en/image.requirements.php. If you find that you can only view images as png instead of jpg, it may be that you do not have gd _jpeg_ support installed.
52 11 Amber Herold
53 1 Amber Herold
54 6 Amber Herold
h2. Configure php.ini
55 1 Amber Herold
56
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:
57
58 11 Amber Herold
<pre>
59 1 Amber Herold
register_argc_argv = On
60
61
short_open_tag = On
62
63
max_execution_time = 300     ; Maximum execution time of each script, in seconds
64
max_input_time = 300     ; Maximum amount of time each script may spend parsing request data
65
memory_limit = 256M      ; Maximum amount of memory a script may consume (8MB)
66 11 Amber Herold
</pre>
67 1 Amber Herold
68
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.
69
70 11 Amber Herold
h2. Apache Web Server
71
72 1 Amber Herold
1. Install the Apache Web Server with the YaST or yum utility.
73
74
2. Find "httpd.conf".
75 11 Amber Herold
 This is /etc/httpd/conf/httpd.conf on CentOS and /etc/php5/apache2/httpd.conf on SuSE
76 1 Amber Herold
77 7 Amber Herold
3. Edit the "httpd.conf" configuration file to look like the following:
78 11 Amber Herold
 <pre>
79
 DirectoryIndex index.htm index.shtm index.html index.shtml index.php
80
 </pre>
81 7 Amber Herold
82 11 Amber Herold
 *Note:* It may be possible to edit httpd.conf in YaST2 as well.
83 4 Amber Herold
84 3 Amber Herold
4. Restart the web server.
85 1 Amber Herold
86
<pre>
87
      apachectl restart
88
           or
89
      /etc/init.d/httpd restart     (ON CentOS)
90
           or
91
      /etc/init.d/apache2 restart   (ON SuSE)
92 11 Amber Herold
</pre>                  
93 1 Amber Herold
94
      If you want to start the web server automatically at boot on SuSE
95
96 11 Amber Herold
<pre>
97 3 Amber Herold
       SuSE >chkconfig apache2 on
98 11 Amber Herold
</pre>
99 1 Amber Herold
100 11 Amber Herold
h2. Check php information
101 1 Amber Herold
102
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).
103
104
<pre>
105
<?php
106 7 Amber Herold
phpinfo();
107 1 Amber Herold
?>
108
</pre>
109
110
Visit this page at http://yourhost/info.php
111
112
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.
113
114
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.
115 6 Amber Herold
116 11 Amber Herold
!http://emg.nysbc.org/software/leginon/images/images/phpini.png!
117
118
119 1 Amber Herold
h2. mrctools Installation
120 7 Amber Herold
121 13 Amber Herold
Follow [[mrctools installation|these instructions]] to install mrctools which will allow viewing of mrc files in a web browser.
122
123 6 Amber Herold
h2. Web Interface (myamiweb) Linux Installation
124 1 Amber Herold
125
php and java scripts for viewing images and Leginon information through the web server.
126
127
128 7 Amber Herold
1. Move the myami/myamiweb directory to your Apache web directory
129 6 Amber Herold
130 3 Amber Herold
Example:
131 1 Amber Herold
<pre>
132 6 Amber Herold
> cd [webdirectory]   // /var/www/html in this example
133
> cp [path_to_myami_download_location]/myami/myamiweb .
134 7 Amber Herold
</pre>
135 3 Amber Herold
136 6 Amber Herold
2. Copy config.php.template to config.php and edit the latter by adding these MySQL parameters:
137 7 Amber Herold
"config.php" should be located in /var/www/html/myamiweb/ on CentOS and /srv/www/htdocs/myamiweb/ on SuSE.
138 1 Amber Herold
139 6 Amber Herold
<pre>
140
<?php
141 1 Amber Herold
// --- define myamiweb tools base --- //
142 6 Amber Herold
143
// This should be changed if the myamiweb directory is located 
144
// in a sub-directory of the Apache web directory.
145
// ex. myamiweb is in /var/www/html/applications/myamiweb/ then
146
// change to  define('BASE_PATH',"applications/myamiweb");
147 3 Amber Herold
define('BASE_PATH',"myamiweb"); 
148 6 Amber Herold
149
// Administrator email address
150 3 Amber Herold
define('ADMIN_EMAIL', "example@scripps.edu");
151 6 Amber Herold
152
// --- Set your MySQL database server parameters
153
define('DB_HOST', "localhost");		// DB Host name 
154
define('DB_USER', "usr_object");	// DB User name
155
define('DB_PASS', "");		        // DB Password
156
define('DB_LEGINON', "leginondb");	// Leginon database name
157 1 Amber Herold
define('DB_PROJECT', "projectdb");	// Project database name
158
</pre>
159 8 Amber Herold
160
* Enable the processing plug-in by uncommenting out the following line in the file`myamiweb/config.php`
161
162
<pre>
163
addplugin("processing");
164
</pre>
165
166
* Copy `myamiweb/processing/config_processing.php.template` to `myamiweb/processing/config_processing.php`
167
* Edit `myamiweb/processing/config_processing.php`
168
169
<pre>
170
$PROCESSING_DB_HOST = "your_db_host";
171
$PROCESSING_DB_USER = "usr_object";
172
$PROCESSING_DB_PASS = ""; 
173
$PROCESSING_DB = "";
174
</pre>
175
176
Remember that the last line should be kept empty as this will be set dynamically.
177
We will not include the processing host or cluster registration now. It is covered in the last part of this document.
178 6 Amber Herold
179 1 Amber Herold
3. Test the set-up by visiting http://yourhost/myamiweb