Difference between revisions of "Virtual Machine Setup Development"
(→Common applications for php development) |
|||
(40 intermediate revisions by 4 users not shown) | |||
Line 8: | Line 8: | ||
== Common applications for php development == | == Common applications for php development == | ||
apt-get install | apt-get install | ||
− | sudo apt-get install apache2 postgresql postgresql-contrib \ | + | sudo apt-get install apache2 postgresql-8.4 postgresql-contrib-8.4 \ |
php5 php5-pgsql php5-sqlite php5-cli php5-imagick php5-gd php-pear phpunit \ | php5 php5-pgsql php5-sqlite php5-cli php5-imagick php5-gd php-pear phpunit \ | ||
− | vim-gnome subversion cvs | + | vim-gnome subversion cvs php5-curl php5-dev php5-json |
+ | make | ||
+ | sudo apt-get install make | ||
pear | pear | ||
sudo pear upgrade PEAR | sudo pear upgrade PEAR | ||
Line 29: | Line 31: | ||
sudo pear install VersionControl_SVN | sudo pear install VersionControl_SVN | ||
vfsStream | vfsStream | ||
− | sudo pear channel-discover pear. | + | sudo pear channel-discover pear.bovigo.org |
− | sudo pear install | + | sudo pear install bovigo/vfsStream-beta |
− | + | Apache setup | |
+ | /etc/apache2/envvars | ||
+ | export GLM_HOST_ID=DEVELOPMENT | ||
sudo chown -R www-data.www-data /var/www | sudo chown -R www-data.www-data /var/www | ||
sudo chmod -R 2770 /var/www | sudo chmod -R 2770 /var/www | ||
− | mkdir /var/www/server | + | sudo mkdir /var/www/server |
− | mkdir/var/www/log | + | sudo mkdir /var/www/log |
− | + | sudo vim /etc/apache2/sites-available/default | |
change all instances of /var/www to /var/www/server | change all instances of /var/www to /var/www/server | ||
− | change the | + | change <Directory /var/www/> to <Directory /var/www/server/> |
+ | change the AllowOverride on the directory /var/www/server/ from None to All | ||
sudo a2enmod rewrite | sudo a2enmod rewrite | ||
+ | edit /etc/apache2/mods-enabled/dir.conf | ||
+ | add index.phtml to DirectoryIndex | ||
+ | /etc/apache2/apache2.conf | ||
+ | add "ServerName {yourservername}" to the end of the file to avoid complaints when restarting server. | ||
sudo service apache2 restart | sudo service apache2 restart | ||
postgres setup | postgres setup | ||
− | + | sudo vim /etc/postgresql/8.4/main/pg_hba.conf | |
Change all methods to trust | Change all methods to trust | ||
− | sudo service postgresql | + | sudo service postgresql restart |
+ | |||
+ | * if you downgrade (from 9.1) to 8.4, uninstall the newer version before installing the older version, otherwise 8.4 will use | ||
+ | * port 5433, and you may start getting "could not connect to server: Connection refused" errors. You will need to | ||
+ | * sudo vim /etc/postgresql/8.4/main/postgresql.conf and change the port number to 5432, and change the one for 9.1 to use 5433 | ||
+ | * then, do "sudo service postgresql restart" | ||
php setup | php setup | ||
set your ini files to max memory of at least 60 or maybe 200 | set your ini files to max memory of at least 60 or maybe 200 | ||
+ | use sudo | ||
/etc/php5/cli/php.ini | /etc/php5/cli/php.ini | ||
safe_mode_allowed_env_vars = PHP_,GLM_ | safe_mode_allowed_env_vars = PHP_,GLM_ | ||
memory_limit = 200 | memory_limit = 200 | ||
− | /etc/php5/ | + | /etc/php5/apache2/php.ini |
− | extension=xdebug.so | + | variables_order = "EGPCS" -- refers to already uncommented one |
+ | safe_mode_allowed_env_vars = PHP_,GLM_ | ||
+ | extension=xdebug.so -- may already be set up by pecl | ||
memory_limit = 200 | memory_limit = 200 | ||
− | go change the permission of the /usr/bin/phpunit file so your user can execute the file and change the /usr/share/php directory to yourself as the user | + | go change the permission of the /usr/bin/phpunit file so your user can execute the file |
− | /etc/ | + | (sudo chmod u+x /usr/bin/phpunit) |
− | + | and change the /usr/share/php directory to yourself as the user | |
+ | (sudo chown whateveryourusernameis /usr/share/php) | ||
+ | /etc/apache2/envvars | ||
+ | export GLM_HOST_ID=DEVELOPMENT | ||
/etc/profile | /etc/profile | ||
− | + | umask 007 | |
− | + | export GLM_HOST_ID=DEVELOPMENT | |
sudo service apache2 restart | sudo service apache2 restart | ||
Line 69: | Line 89: | ||
You'll need to set error_reporting to E_NOTICE where it has DEPRECIATED and set allow_call_time_pass_reference = On | You'll need to set error_reporting to E_NOTICE where it has DEPRECIATED and set allow_call_time_pass_reference = On | ||
+ | |||
+ | == PDFlib == | ||
+ | Install PDFlib version 9 for PHP | ||
+ | |||
+ | To download the current PDFlib, go to the following URL. | ||
+ | http://www.pdflib.com/download/ | ||
+ | Select the following software section. | ||
+ | Download the PDFlib product family | ||
+ | Download the appropriate package family. Be sure to select the package for PHP! Typically your environment will be ... | ||
+ | Linux x86 | ||
+ | or | ||
+ | Linux Intel 64 | ||
+ | Save this file to your desired temporary location then un-archive the package. (Using correct file name of course.) | ||
+ | tar -zxf PDFlib-9.0.2-Linux-x86_64-php.tar.gz | ||
+ | Determine your version of PHP. | ||
+ | php -i | grep "PHP Version" | ||
+ | Determine the proper destination directory for the php_pdflib.so file. First check php.ini. (adjust directories as needed) | ||
+ | grep extension_dir /etc/php5/apache2/php.ini | ||
+ | If all resulting lines are commented out with ";", then look for the default directory. It will be something like ... | ||
+ | /usr/lib/php5/20090626/ | ||
+ | Copy the php_pdflib.so file to the directory determined above and set the proper file mode. The correct source file will be in "bind/php/php-xxx" where xxx would be the version of PHP you have. (If your processor and operating system support Multi-Threading, use the file with "mt".) For example ... | ||
+ | sudo cp bind/php/php-530/php_pdflib.so /usr/lib/php5/20090626/. | ||
+ | sudo chmod 644 /usr/lib/php5/20090626/php_pdflib.so | ||
+ | Add the following to your php.ini file (usually /etc/php5/apache2/php.ini). | ||
+ | extension=php_pdflib.so | ||
+ | Restart Apache | ||
+ | sudo apache2ctl restart | ||
+ | To check if PDFlib loaded properly do the following. You should see several lines regarding PDFlib. | ||
+ | php -i | grep PDFlib | ||
+ | If there are problems, check the Apache error log. | ||
+ | |||
+ | == Other == | ||
+ | for some application that mail stuff out (forms and such) | ||
+ | install sendmail | ||
+ | and mailutils | ||
+ | |||
+ | == Samba for /var/www/server == | ||
+ | you have to install samba and smbfs first | ||
+ | sudo apt-get install samba smbfs | ||
+ | |||
+ | Edit /etc/samba/smb.conf | ||
+ | Change workgroup as desired | ||
+ | workgroup = FRNTOFFICE | ||
+ | |||
+ | Uncomment these | ||
+ | wins support = no | ||
+ | bind interfaces only = yes | ||
+ | security = user | ||
+ | |||
+ | Comment out these | ||
+ | unix password sync = yes | ||
+ | map to guest = bad user | ||
+ | |||
+ | If you want access to your home directory, also uncomment and set these lines. | ||
+ | [homes] | ||
+ | comment = Home Directories | ||
+ | browseable = yes | ||
+ | writeable = yes | ||
+ | valid users = %S | ||
+ | |||
+ | Add to end | ||
+ | [server] | ||
+ | comment = Web Server Files | ||
+ | path = /var/www/server | ||
+ | guest ok = no | ||
+ | read only = no | ||
+ | browseable = yes | ||
+ | create mask = 0770 | ||
+ | directory mask = 2770 | ||
+ | valid users = {PUT YOUR USER NAME HERE} | ||
+ | writable = yes | ||
+ | |||
+ | End of editing /etc/samba/smb.conf | ||
+ | |||
+ | run | ||
+ | service smbd restart | ||
+ | |||
+ | Change permissions on everything in your www directory | ||
+ | sudo chown -R www-data.www-data /var/www/* | ||
+ | sudo chmod -R g+w /var/www/* | ||
+ | |||
+ | Edit /etc/group to add your user to group www-data - Just add your user ID to the end of the line and don't change anything else such as the gid which shows here as 33. | ||
+ | www-data:x:33:cscott | ||
+ | |||
+ | == SSH Server Setup - To be able to SSH to this virtual machine == | ||
+ | apt-get install openssh-server | ||
+ | |||
+ | == Setup with PHP 5.2 == | ||
+ | After check out of app.gaslightmedia.com | ||
+ | |||
+ | in your app.gaslightmedia.com directory | ||
+ | svn co <nowiki>http://cvs2/svn/glmZend/trunk</nowiki> glmZend | ||
+ | svn co <nowiki>http://cvs2/svn/glmPEAR/tags/5.2</nowiki> glmPEAR | ||
+ | svn co <nowiki>http://cvs2/svn/ckeditor/trunk</nowiki> ckeditor | ||
+ | svn co <nowiki>http://cvs2/svn/CommonApps/trunk</nowiki> CommonApps | ||
+ | |||
+ | == Setup with PHP 5.3 == | ||
+ | After check out of app.gaslightmedia.com | ||
+ | |||
+ | in your app.gaslightmedia.com directory | ||
+ | svn co <nowiki>http://cvs2/svn/glmZend/trunk</nowiki> glmZend | ||
+ | svn co <nowiki>http://cvs2/svn/glmPEAR/trunk</nowiki> glmPEAR | ||
+ | svn co <nowiki>http://cvs2/svn/ckeditor/trunk</nowiki> ckeditor | ||
+ | svn co <nowiki>http://cvs2/svn/CommonApps/trunk</nowiki> CommonApps | ||
+ | |||
+ | == Setup with PHP 5.4 == | ||
+ | After check out of app.gaslightmedia.com | ||
+ | |||
+ | in your app.gaslightmedia.com directory | ||
+ | svn co <nowiki>http://cvs2/svn/glmZend/trunk</nowiki> glmZend | ||
+ | svn co <nowiki>http://cvs2/svn/glmPEAR/branches/5.4</nowiki> glmPEAR | ||
+ | svn co <nowiki>http://cvs2/svn/ckeditor/trunk</nowiki> ckeditor | ||
+ | svn co <nowiki>http://cvs2/svn/CommonApps/trunk</nowiki> CommonApps | ||
+ | |||
+ | == xdebug == | ||
+ | to get work correctly you need html_errors On | ||
+ | |||
+ | == Changing Console Resolution for Ubuntu Server == | ||
+ | If you're running an Ubuntu Server (no GUI) as your virtual machine, you may want to change the screen resolution to save screen space or provide a larger screen area for your console. This is the procedure for doing so. | ||
+ | |||
+ | Reboot your virtual machine and enter "C" while on the Grub screen. | ||
+ | |||
+ | Enter "vbeinfo" to display the available resolutions and note the desired resolution from those available. | ||
+ | |||
+ | Boot your virtual machine. | ||
+ | |||
+ | edit "/etc/default/grub" | ||
+ | |||
+ | Set the resolution by changing the following line to the desired resolution. | ||
+ | GRUB_GFXMODE=800x600 | ||
+ | |||
+ | Enter the following command... | ||
+ | sudo update-grub | ||
+ | |||
+ | Reboot and enjoy. | ||
+ | |||
+ | == Install apt-show-versions to be able to list versions for installed packages (optional) == | ||
+ | Install | ||
+ | sudo apt-get install apt-show-versions | ||
+ | |||
+ | Use | ||
+ | apt-show-versions {package} |
Latest revision as of 11:13, 30 June 2014
For now on It is not posible to use Ubuntu 9.10 anymore. It is no longer being maintained and no longer has repositories to setup anything.
You'll have to use Ubuntu 11.10
Contents
- 1 Common applications for php development
- 2 phpunit
- 3 PDFlib
- 4 Other
- 5 Samba for /var/www/server
- 6 SSH Server Setup - To be able to SSH to this virtual machine
- 7 Setup with PHP 5.2
- 8 Setup with PHP 5.3
- 9 Setup with PHP 5.4
- 10 xdebug
- 11 Changing Console Resolution for Ubuntu Server
- 12 Install apt-show-versions to be able to list versions for installed packages (optional)
Common applications for php development
apt-get install
sudo apt-get install apache2 postgresql-8.4 postgresql-contrib-8.4 \ php5 php5-pgsql php5-sqlite php5-cli php5-imagick php5-gd php-pear phpunit \ vim-gnome subversion cvs php5-curl php5-dev php5-json
make
sudo apt-get install make
pear
sudo pear upgrade PEAR sudo pear upgrade-all
xdebug
sudo pecl install xdebug
phpunit
sudo pear channel-discover pear.phpunit.de sudo pear channel-discover pear.symfony-project.com sudo pear install --force --alldeps phpunit/PHPUnit sudo pear install phpunit/PHPUnit_Selenium sudo pear install phpunit/DbUnit
phing
sudo pear channel-discover pear.phing.info sudo pear install phing/phing
VersionControl SVN
sudo pear config-set preferred_state alpha sudo pear install VersionControl_SVN
vfsStream
sudo pear channel-discover pear.bovigo.org sudo pear install bovigo/vfsStream-beta
Apache setup
/etc/apache2/envvars export GLM_HOST_ID=DEVELOPMENT sudo chown -R www-data.www-data /var/www sudo chmod -R 2770 /var/www sudo mkdir /var/www/server sudo mkdir /var/www/log sudo vim /etc/apache2/sites-available/default change all instances of /var/www to /var/www/server change <Directory /var/www/> to <Directory /var/www/server/> change the AllowOverride on the directory /var/www/server/ from None to All sudo a2enmod rewrite edit /etc/apache2/mods-enabled/dir.conf add index.phtml to DirectoryIndex /etc/apache2/apache2.conf add "ServerName {yourservername}" to the end of the file to avoid complaints when restarting server. sudo service apache2 restart
postgres setup
sudo vim /etc/postgresql/8.4/main/pg_hba.conf Change all methods to trust sudo service postgresql restart * if you downgrade (from 9.1) to 8.4, uninstall the newer version before installing the older version, otherwise 8.4 will use * port 5433, and you may start getting "could not connect to server: Connection refused" errors. You will need to * sudo vim /etc/postgresql/8.4/main/postgresql.conf and change the port number to 5432, and change the one for 9.1 to use 5433 * then, do "sudo service postgresql restart"
php setup
set your ini files to max memory of at least 60 or maybe 200 use sudo /etc/php5/cli/php.ini safe_mode_allowed_env_vars = PHP_,GLM_ memory_limit = 200 /etc/php5/apache2/php.ini variables_order = "EGPCS" -- refers to already uncommented one safe_mode_allowed_env_vars = PHP_,GLM_ extension=xdebug.so -- may already be set up by pecl memory_limit = 200 go change the permission of the /usr/bin/phpunit file so your user can execute the file
(sudo chmod u+x /usr/bin/phpunit)
and change the /usr/share/php directory to yourself as the user
(sudo chown whateveryourusernameis /usr/share/php)
/etc/apache2/envvars export GLM_HOST_ID=DEVELOPMENT /etc/profile umask 007 export GLM_HOST_ID=DEVELOPMENT sudo service apache2 restart
phpunit
For running phpunit you'll need to setup your ENV varaible of GLM_HOST_ID somehow.
You can setup a prepend file that gets prepended and sets the env that way.
this needs to be set in cli/php.ini not apache2/php.ini under the /etc/php5
You'll need to set error_reporting to E_NOTICE where it has DEPRECIATED and set allow_call_time_pass_reference = On
PDFlib
Install PDFlib version 9 for PHP
To download the current PDFlib, go to the following URL.
http://www.pdflib.com/download/
Select the following software section.
Download the PDFlib product family
Download the appropriate package family. Be sure to select the package for PHP! Typically your environment will be ...
Linux x86
or
Linux Intel 64
Save this file to your desired temporary location then un-archive the package. (Using correct file name of course.)
tar -zxf PDFlib-9.0.2-Linux-x86_64-php.tar.gz
Determine your version of PHP.
php -i | grep "PHP Version"
Determine the proper destination directory for the php_pdflib.so file. First check php.ini. (adjust directories as needed)
grep extension_dir /etc/php5/apache2/php.ini
If all resulting lines are commented out with ";", then look for the default directory. It will be something like ...
/usr/lib/php5/20090626/
Copy the php_pdflib.so file to the directory determined above and set the proper file mode. The correct source file will be in "bind/php/php-xxx" where xxx would be the version of PHP you have. (If your processor and operating system support Multi-Threading, use the file with "mt".) For example ...
sudo cp bind/php/php-530/php_pdflib.so /usr/lib/php5/20090626/. sudo chmod 644 /usr/lib/php5/20090626/php_pdflib.so
Add the following to your php.ini file (usually /etc/php5/apache2/php.ini).
extension=php_pdflib.so
Restart Apache
sudo apache2ctl restart
To check if PDFlib loaded properly do the following. You should see several lines regarding PDFlib.
php -i | grep PDFlib
If there are problems, check the Apache error log.
Other
for some application that mail stuff out (forms and such) install sendmail and mailutils
Samba for /var/www/server
you have to install samba and smbfs first
sudo apt-get install samba smbfs
Edit /etc/samba/smb.conf Change workgroup as desired
workgroup = FRNTOFFICE
Uncomment these
wins support = no bind interfaces only = yes security = user
Comment out these
unix password sync = yes map to guest = bad user
If you want access to your home directory, also uncomment and set these lines.
[homes] comment = Home Directories browseable = yes writeable = yes valid users = %S
Add to end
[server] comment = Web Server Files path = /var/www/server guest ok = no read only = no browseable = yes create mask = 0770 directory mask = 2770 valid users = {PUT YOUR USER NAME HERE} writable = yes
End of editing /etc/samba/smb.conf
run
service smbd restart
Change permissions on everything in your www directory
sudo chown -R www-data.www-data /var/www/* sudo chmod -R g+w /var/www/*
Edit /etc/group to add your user to group www-data - Just add your user ID to the end of the line and don't change anything else such as the gid which shows here as 33.
www-data:x:33:cscott
SSH Server Setup - To be able to SSH to this virtual machine
apt-get install openssh-server
Setup with PHP 5.2
After check out of app.gaslightmedia.com
in your app.gaslightmedia.com directory
svn co http://cvs2/svn/glmZend/trunk glmZend svn co http://cvs2/svn/glmPEAR/tags/5.2 glmPEAR svn co http://cvs2/svn/ckeditor/trunk ckeditor svn co http://cvs2/svn/CommonApps/trunk CommonApps
Setup with PHP 5.3
After check out of app.gaslightmedia.com
in your app.gaslightmedia.com directory
svn co http://cvs2/svn/glmZend/trunk glmZend svn co http://cvs2/svn/glmPEAR/trunk glmPEAR svn co http://cvs2/svn/ckeditor/trunk ckeditor svn co http://cvs2/svn/CommonApps/trunk CommonApps
Setup with PHP 5.4
After check out of app.gaslightmedia.com
in your app.gaslightmedia.com directory
svn co http://cvs2/svn/glmZend/trunk glmZend svn co http://cvs2/svn/glmPEAR/branches/5.4 glmPEAR svn co http://cvs2/svn/ckeditor/trunk ckeditor svn co http://cvs2/svn/CommonApps/trunk CommonApps
xdebug
to get work correctly you need html_errors On
Changing Console Resolution for Ubuntu Server
If you're running an Ubuntu Server (no GUI) as your virtual machine, you may want to change the screen resolution to save screen space or provide a larger screen area for your console. This is the procedure for doing so.
Reboot your virtual machine and enter "C" while on the Grub screen.
Enter "vbeinfo" to display the available resolutions and note the desired resolution from those available.
Boot your virtual machine.
edit "/etc/default/grub"
Set the resolution by changing the following line to the desired resolution.
GRUB_GFXMODE=800x600
Enter the following command...
sudo update-grub
Reboot and enjoy.
Install apt-show-versions to be able to list versions for installed packages (optional)
Install
sudo apt-get install apt-show-versions
Use
apt-show-versions {package}