Web Server Installation on CentOS 6 » History » Version 20
Anchi Cheng, 07/27/2016 10:43 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 | 12 | Sargis Dallakyan | In the package selection step switch from Minimal to Web Server. |
9 | 10 | Sargis Dallakyan | |
10 | 1 | Sargis Dallakyan | !http://linuxmoz.com/images/c6i/install-centos-6-minimal-install.png! |
11 | 12 | Sargis Dallakyan | |
12 | h4. Disable SELinux and Firewall |
||
13 | |||
14 | To disable "SELinux":http://wiki.centos.org/HowTos/SELinux: |
||
15 | |||
16 | # Edit file "/etc/selinux/config" |
||
17 | # Change "SELINUX=enforcing" to "SELINUX=disabled" |
||
18 | # Save the file |
||
19 | # Restart your computer |
||
20 | |||
21 | To disable firewall run _system-config-firewall-tui_ command and use Space key to unchecked the checkbox next to Enabled. |
||
22 | |||
23 | 15 | Sargis Dallakyan | h3. Install Extra Packages for Enterprise Linux (EPEL) |
24 | |||
25 | <pre> |
||
26 | rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm |
||
27 | </pre> |
||
28 | |||
29 | 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. |
||
30 | |||
31 | <pre> |
||
32 | 17 | Sargis Dallakyan | yum install php-gd gcc libssh2-devel php-pecl-ssh2 mod_ssl php-mysql php-devel php fftw3-devel python-imaging python-devel mod_python scipy svn |
33 | 15 | Sargis Dallakyan | easy_install fs PyFFTW3 |
34 | </pre> |
||
35 | 1 | Sargis Dallakyan | |
36 | 16 | Sargis Dallakyan | h3. [[Configure php.ini]] |
37 | |||
38 | Edit /etc/php.ini and change line ~229 to |
||
39 | <pre> |
||
40 | short_open_tag = On |
||
41 | </pre> |
||
42 | |||
43 | 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. |
||
44 | |||
45 | 11 | Sargis Dallakyan | h3. Start Apache HTTP Server |
46 | 1 | Sargis Dallakyan | |
47 | 11 | Sargis Dallakyan | <pre> |
48 | service httpd start |
||
49 | 1 | Sargis Dallakyan | chkconfig httpd on |
50 | 11 | Sargis Dallakyan | </pre> |
51 | |||
52 | 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. |
||
53 | 6 | Sargis Dallakyan | |
54 | If you have a file server that stores Appion and Leginon session, start and enable nfs services as well: |
||
55 | |||
56 | <pre> |
||
57 | service nfs start |
||
58 | chkconfig nfs on |
||
59 | </pre> |
||
60 | |||
61 | 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 |
||
62 | |||
63 | 4 | Sargis Dallakyan | h3. [[Download Appion Files|Download Appion and Leginon Files]] |
64 | 1 | Sargis Dallakyan | |
65 | 20 | Anchi Cheng | {{include(Download_Appion_Files_Shared)}} |
66 | 5 | Sargis Dallakyan | |
67 | 18 | Sargis Dallakyan | h3. [[Install Redux image server]] |
68 | 1 | Sargis Dallakyan | |
69 | 5 | Sargis Dallakyan | <pre> |
70 | cd myami |
||
71 | 1 | Sargis Dallakyan | ./pysetup.sh install |
72 | 18 | Sargis Dallakyan | mkdir /etc/myami |
73 | cp redux/redux.cfg.template /etc/myami/redux.cfg |
||
74 | 4 | Sargis Dallakyan | /etc/init.d/reduxd start |
75 | </pre> |
||
76 | |||
77 | h3. [[Install the Web Interface]] |
||
78 | |||
79 | <pre> |
||
80 | 14 | Sargis Dallakyan | cp -r myamiweb/ /var/www/html/ |
81 | 4 | Sargis Dallakyan | </pre> |
82 | |||
83 | Visit http://localhost/myamiweb/setup and follow instructions in Web Tools Setup Wizard. |
||
84 | |||
85 | 1 | Sargis Dallakyan | See also [[Install the Web Interface Advanced]]. |