Project

General

Profile

Support #432

Updated by Daniel Curtis over 9 years ago

Here is a procedure to install a FAMP, FreeBSD with Apache, MariaDB and PHP, server. The following setup runs Apache 2.4, MariaDB 5.5, and PHP 5 on FreeBSD 9.2-RELEASE. If any version of the packages needs to be changed, replace the versions in the commands accordingly. 

 h2. Pre-Installation Tasks 

 * Before installation of the components, make sure the ports tree and packages are up to date using the following command: 
 <pre> 
 pkg update && pkg upgrade && portsnap fetch extract 
 </pre> 

 h2. Apache 2.4 & PHP – Installation and Configuration 

 * Install Apache 2.4 with mod_php5 
 <pre> 
 pkg install apache24 php5 mod_php5 php5-xml php5-dom libgpg-error php5-xmlreader php5-simplexml php5-ctype php5-fileinfo php5-openssl php5-hash php5-filter openldap-client xproto xextproto libXau libXdmcp libpthread-stubs kbproto libICE freetype2 png jpeg printproto php5-exif curl php5-json php5-sqlite3 php5-pdo php5-mysql php5-mysqli php5-pdo_mysql oniguruma4 php5-iconv mp3info php5-zlib php5-zip php5-bz2 php5-session libgcrypt php5-wddx php5-ldap libxcb libSM php5-curl php5-pdo_sqlite php5-mbstring libxslt libX11 libXt php5-xsl libXext libXp libXmu libXpm libXaw t1lib php5-gd 
 </pre> 

 NOTE: This installs a few PHP extensions, add or remove as needed. 

 * Edit the apache configuration file, i.e. @/usr/local/etc/apache24/httpd.conf@, and make the following changes: 
 <pre> 
 ServerRoot "/usr/local" 
 ServerAdmin you@your.address 
 ServerName www.example.com:80 
 DocumentRoot "/usr/local/www" 
 Listen :80 
 NameVirtualHost *:80 
 ... 
 <Directory "/usr/local/www"> 
     Options Indexes FollowSymLinks 

     AllowOverride None 

     Order allow,deny 
     Allow from all 
 </Directory> 
 ... 
 <IfModule dir_module> 
     DirectoryIndex index.php index.html 
 </IfModule> 

 <FilesMatch "\.php$"> 
     SetHandler application/x-httpd-php 
 </FilesMatch> 
 <FilesMatch "\.phps$"> 
     SetHandler application/x-httpd-php-source 
 </FilesMatch> 
 ... 
 Include etc/apache22/Includes/*.conf 
 </pre> 

 h3. Setup a Virtual Host 

 * First create a folder for the virtual host: 
 <pre> 
 mkdir /usr/local/www/www.example.com 
 </pre> 

 * Now create a vhost website in /usr/local/etc/apache24/Includes/www.example.com.conf: 
 <pre> 
 <VirtualHost *:80> 
     ServerAdmin root@example.com 
     DocumentRoot "/usr/local/www/www.example.com" 
     ServerName www.example.com 
     ErrorLog "/var/log/www.example.com-error_log" 
     CustomLog "/var/log/www.example.com-access_log" common 
 </VirtualHost> 
 </pre> 

 * Edit the @/etc/hosts@ file and add the following line: 
 > <ip-address>                    <hostname>.<domain> 
 #* eg: 
 > 192.168.1.1                 www.example.com 

 * (Optional) Create a file named /boot/loader.conf or edit it if it is already present and add the following line: 
 > accf_http_load="YES" 
 * (Optional) Create a file named /usr/local/etc/apache24/Includes/no-accf.conf or edit it if it is already present and add the following lines to disable ACCF (I do this since I am in a jail that does not have the reuired kernel module): 
 <pre> 
 <IfDefine NOHTTPACCEPT> 
    AcceptFilter http none 
    AcceptFilter https none 
 </IfDefine> 
 </pre> 

 * Add the following line to @/etc/rc.conf@: 
 > echo 'apache24_enable="YES"' >> /etc/rc.conf 

 * Test the apache server installation using the following command: 
 <pre> 
 /usr/local/sbin/apachectl start 
 </pre> 

 h2. MariaDB – Installation and Configuration 

 * Install MariaDB 5.5 Server and Client 
 <pre> 
 pkg install mariadb55-{server,client} 
 </pre> 

 * Add the following line to the file @/etc/rc.conf@: 
 <pre> 
 echo 'mysql_enable="YES"' >> /etc/rc.conf 
 </pre> 

 * Start MariaDB 
 <pre> 
 service mysql-server start 
 </pre> 

 * Set password for mysql using the following command 
 <pre> 
 mysqladmin -uroot password 
 </pre>  

 h3. Configure MariaDB 

 * Use the following command: 
 <pre> 
 cp /usr/local/share/mysql/my-small.cnf /usr/local/etc/my.cnf 
 </pre> 

 * Restart mysql using the following commands: 
 <pre> 
 service mysql-server restart 
 </pre> 

 h2. PHP – Installation and Configuration 

 * Install PHP5 and other supporting packages: 
 <pre> 
 pkg install php5 php5-extensions 
 </pre> 

 * Copy the PHP configuration file using the following command 
 <pre> 
 cp /usr/local/etc/php.ini-production /usr/local/etc/php.ini 
 </pre> 

 * Configure the mysql module for PHP: 
 <pre> 
 pkg install php5-mysql php5-mysqli php5-pdo_mysql 
 </pre> 

 * Install the php5-session package 
 <pre> 
 pkg install php5-session 
 </pre> 

 * Install and configuring apache module for PHP: 
 <pre> 
 pkg install mod_php5 
 </pre> 

 * Edit @/usr/local/etc/apache22/httpd.conf@ file and add the following lines: 
 <pre> 
 LoadModule php5_module          libexec/apache22/libphp5.so 

 AddType application/x-httpd-php .php 
 AddType application/x-httpd-php-source .phps 
 </pre> 

 * You should also search for the line that reads: 
 > DirectoryIndex index.html 
 *# and change it to read: 
 > DirectoryIndex index.php index.html 

 * Once completed, a simple call to the apachectl command for a graceful restart is needed to load the PHP module: 
 <pre> 
 apachectl graceful 
 </pre> 

 For future upgrades of PHP, the make config command will not be required; the selected OPTIONS are saved automatically by the FreeBSD Ports framework. 

 The PHP support in FreeBSD is extremely modular so the base install is very limited. It is very easy to add support using the _lang/php5-extensions_ port. This port provides a menu driven interface to PHP extension installation. Alternatively, individual extensions can be installed using the appropriate port. 

 * Now restart the apache server by using the following command: 
 <pre> 
 /usr/local/sbin/apachectl restart 
 </pre> 

 h3. Install # *Install the Phusion Passenger module 

 Install and compile Phusion Passenger module* 
 <pre> 
 pkg cd /usr/ports/www/rubygem-passenger 
 make install rubygem-passenger clean 
 passenger-install-apache2-module 
 </pre> 
 #* Then add the module in @/usr/local/etc/apache24/httpd.conf@: 
 <pre> 
 LoadModule passenger_module /usr/ports/www/rubygem-passenger/work/passenger-4.0.41/buildout/apache2/mod_passenger.so 
 <IfModule mod_passenger.c> 
   PassengerRoot /usr/ports/www/rubygem-passenger/work/passenger-4.0.41 
   PassengerDefaultRuby /usr/local/bin/ruby19 
 </IfModule> 
 </pre> 
 #* And now ruby web applications can be used by using the following template: 
 <pre> 
 <VirtualHost *:80> 
    ServerName www.yourhost.com 
    # !!! Be sure to point DocumentRoot to 'public'! 
    DocumentRoot /somewhere/public     
    <Directory /somewhere/public> 
       # This relaxes Apache security settings. 
       AllowOverride all 
       # MultiViews must be turned off. 
       Options -MultiViews 
    </Directory> 
 </VirtualHost> 
 </pre> 

 h3. Install and configure phpMyAdmin 

 * Install phpmyadmin: 
 <pre> 
 pkg install phpmyadmin 
 </pre> 

 Now its time to configure phpMyAdmin. Do this by creating the file @/usr/local/www/phpMyAdmin/config.inc.php@, the basic configuration file for phpMyAdmin. Traditionally, users have manually created or modified @/usr/local/www/phpMyAdmin/config.inc.php@, but now phpMyAdmin includes a nice setup script, making it much easier to create this file with the settings you want.  

 * Start by creating the directory /usr/local/www/phpMyAdmin/config and make it writable by the phpMyAdmin setup script: 
 <pre> 
 mkdir /usr/local/www/phpMyAdmin/config 
 chmod o+w /usr/local/www/phpMyAdmin/config 
 </pre> 

 * Then make @/usr/local/www/phpMyAdmin/config.inc.php@ readable by the phpMyAdmin setup script: 
 <pre> 
 chmod o+r /usr/local/www/phpMyAdmin/config.inc.php 
 </pre> 

 * Now open your web browser and navigate to http://www.example.com/phpmyadmin/setup where you will see the phpMyAdmin setup _Overview_ page.  

 * Select *New Server* and then select the *Authentication* tab.  
 *# Under the *Authentication type* choose +http+ from the drop-down list (using HTTP-Auth to sign-in into phpMyAdmin will avoid storing login/password credentials directly in config.inc.php) 
 *# And remove +root+ from the *User for config auth*. 

 * Now select *Apply* and you will be returned you to the Overview page where you should see a new server listed.  

 * Select *Save* again in the Overview page to save your configuration as @/usr/local/www/phpMyAdmin/config/config.inc.php@.  

 * Now let’s move that file up one directory to @/usr/local/www/phpMyAdmin@ where phpMyAdmin can make use of it. 
 <pre> 
 mv /usr/local/www/phpMyAdmin/config/config.inc.php /usr/local/www/phpMyAdmin   
 </pre>  

 * Now let’s try out phpMyAdmin to make sure it works. Point your web browser to http://www.example.com/phpmyadmin where you will be presented with a pop-up box requesting you to log in.  
 Use “root” and the MySQL password you set up previously, then you should be directed to the phpMyAdmin administration page.  

 * We no longer need the /usr/local/www/phpMyAdmin/config directory so let’s remove it, and the read permission we added previously to /usr/local/www/phpMyAdmin/config.inc.php: 
 <pre> 
 rm -r /usr/local/www/phpMyAdmin/config 
 chmod o-r /usr/local/www/phpMyAdmin/config.inc.php 
 </pre> 

 * And wrap up by restarting the Apache and MySQL servers: 
 <pre> 
 service apache24 restart 
 service mysql-server restart 
 </pre> 

 h2. Resources 

 * http://fosskb.wordpress.com/2014/04/10/famp-installing-apache2-4-mysql-php-on-freebsd-10/

Back