Web Server Installation on CentOS 6 » History » Version 11
Sargis Dallakyan, 08/23/2013 11:56 AM
1 | 1 | Sargis Dallakyan | h1. Web Server Installation on CentOS 6 |
---|---|---|---|
2 | |||
3 | 10 | Sargis Dallakyan | Before you start, make sure you have CentOS 6 installed on your computer. Note that upgrading from CentOS 5 to CentOS 6 might damage existing filesystems and operating systems as described in "CentOS Migration Guide":http://wiki.centos.org/HowTos/MigrationGuide. That's why we recommend starting with a fresh install of CentOS 6. The following links provide excellent step by step guide on how to install CentOS 6 Linux from scratch on a new machine: |
4 | 1 | Sargis Dallakyan | |
5 | 2 | Sargis Dallakyan | * http://linuxmoz.com/how-to-install-centos-6-linux-for-servers-desktops |
6 | 1 | Sargis Dallakyan | * http://www.if-not-true-then-false.com/2011/centos-6-netinstall-network-installation |
7 | 10 | Sargis Dallakyan | |
8 | 11 | Sargis Dallakyan | In the package selection step switch from Minimal to Web Server (optional). |
9 | 10 | Sargis Dallakyan | |
10 | !http://linuxmoz.com/images/c6i/install-centos-6-minimal-install.png! |
||
11 | 3 | Sargis Dallakyan | |
12 | 11 | Sargis Dallakyan | h3. Start Apache HTTP Server |
13 | 1 | Sargis Dallakyan | |
14 | 11 | Sargis Dallakyan | <pre> |
15 | service httpd start |
||
16 | chkconfig httpd on |
||
17 | </pre> |
||
18 | 1 | Sargis Dallakyan | |
19 | 11 | Sargis Dallakyan | See also: "How to start Apache at Startup on Centos or Red Hat Enterprise Linux using chkconfig":http://thevagabondgeek.com/12-how-to-start-apache-at-startup-on-centos-or-red-hat-enterprise-linux-using-chkconfig. |
20 | |||
21 | If you have a file server that stores Appion and Leginon session, start and enable nfs services as well: |
||
22 | |||
23 | 1 | Sargis Dallakyan | <pre> |
24 | 11 | Sargis Dallakyan | service nfs start |
25 | chkconfig nfs on |
||
26 | 1 | Sargis Dallakyan | </pre> |
27 | |||
28 | 11 | Sargis Dallakyan | See "How to Set Up an NFS Mount on CentOS 6":https://www.digitalocean.com/community/articles/how-to-set-up-an-nfs-mount-on-centos-6 |
29 | 1 | Sargis Dallakyan | |
30 | 11 | Sargis Dallakyan | h3. Install Extra Packages for Enterprise Linux (EPEL) |
31 | |||
32 | <pre> |
||
33 | rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm |
||
34 | </pre> |
||
35 | |||
36 | Note that release version (6-8) is the current release at the time of this writing. Please visit http://fedoraproject.org/wiki/EPEL/FAQ#How_can_I_install_the_packages_from_the_EPEL_software_repository.3F for more up-to-date information on how to install the packages from the EPEL software repository. |
||
37 | |||
38 | 4 | Sargis Dallakyan | |
39 | <pre> |
||
40 | yum install php-gd gcc phpMyAdmin libssh2-devel php-pecl-ssh2 mod_ssl httpd php-mysql php-devel php fftw3-devel svn python-imaging python-devel mod_python scipy |
||
41 | easy_install fs PyFFTW3 |
||
42 | </pre> |
||
43 | 6 | Sargis Dallakyan | |
44 | h3. [[Configure php.ini]] |
||
45 | |||
46 | Edit /etc/php.ini and change line ~229 to |
||
47 | <pre> |
||
48 | short_open_tag = On |
||
49 | </pre> |
||
50 | |||
51 | Note that short_open_tag appears twice in /etc/php.ini and you need to set "short_open_tag = On":http://www.apachefriends.org/f/viewtopic.php?p=155513 at around line 229 for it to take effect. |
||
52 | |||
53 | 4 | Sargis Dallakyan | |
54 | h3. [[Download Appion Files|Download Appion and Leginon Files]] |
||
55 | |||
56 | <pre> |
||
57 | svn co http://emg.nysbc.org/svn/myami/trunk myami/ |
||
58 | </pre> |
||
59 | 8 | Amber Herold | |
60 | 7 | Amber Herold | Also available for centos6 is the myami-2.2-redux branch. This has the same features as the 2.2 release, but the portions of myami that were incompatible with Centos5 have been replaced with what we call Redux. |
61 | |||
62 | <pre> |
||
63 | svn co http://emg.nysbc.org/svn/myami/branches/myami-2.2-redux myami/ |
||
64 | </pre> |
||
65 | 5 | Sargis Dallakyan | |
66 | 4 | Sargis Dallakyan | h3. Install and Start Redux |
67 | 1 | Sargis Dallakyan | |
68 | 5 | Sargis Dallakyan | <pre> |
69 | cd myami |
||
70 | ./pysetup.sh install |
||
71 | 4 | Sargis Dallakyan | mkdir /tmp/redux |
72 | /etc/init.d/reduxd start |
||
73 | </pre> |
||
74 | |||
75 | h3. [[Install the Web Interface]] |
||
76 | |||
77 | <pre> |
||
78 | cp -r ../myamiweb/ /var/www/html/ |
||
79 | </pre> |
||
80 | |||
81 | Visit http://localhost/myamiweb/setup and follow instructions in Web Tools Setup Wizard. |
||
82 | |||
83 | 1 | Sargis Dallakyan | See also [[Install the Web Interface Advanced]]. |