How to Install Zend Server CE on Linux Mint
Send server is a PHP application server. It comes in as a community server edition and a server edition. The community edition has a subset of the features of the full edition.
This PHP application stack is reliable and fast. It is available for free for testing, development, and production use. It supports a bunch of different dsitros like RHEL, CentOS, Fedora, Ubuntu, and Debian. It is also available on several different versions of Windows as well as Mac OS.
Features:
- Certified PHP
- Web-based administrator console
- Debugger interface
- Apache or IIS integration
- Java connector to integrate Java functionality
- Bytecode acceleration – Saves disk and CPU time by keeping compiled code in memory
- Data Caching API
- Zend Framework
- Native installation for each platform
Zend Server Install Steps:
-
Open a terminal
-
Add repository in /etc/apt/sources.list, edit the file:
sudo nano /etc/apt/sources.list
- Add this line at the end of the file:
deb http://repos.zend.com/zend-server/deb server non-free
- Add the public key for the Zend repository:
wget http://repos.zend.com/zend.key -O- | sudo apt-key add -
- Update repository index:
sudo apt-get update
- Install the Zend Server Community Edition packaga:
sudo apt-get install zend-server-ce-php-5.3
Go here in your browser:
https://localhost:10082/ZendServer |
or
http://localhost:10081/ZendServer |
- Accept license
- Set a password
- Click finish
- You should now be logged into the working interface
For a single user:
~/.bashrcPATH=$PATH:<install_path>/bin LD_LIBRARY_PATH=$LD_LIBRARY_PATH:<install_path>/lib
For all users system wide:
/etc/profilePATH=$PATH:<install_path>/bin LD_LIBRARY_PATH=$LD_LIBRARY_PATH:<install_path>/lib