`
womendu
  • 浏览: 1480530 次
  • 性别: Icon_minigender_2
  • 来自: 北京
文章分类
社区版块
存档分类
最新评论

Linux CentOS 5 Server: YUM Repository to Install Zend Optimizer

阅读更多

URL:http://www.question-defense.com/2009/06/06/linux-centos-5-server-yum-repository-to-install-zend-optimizer

I recently needed to install Zend Optimizer which was required by a ZenCart addon using Zend Guard. Zend Guard encrypts some or all of a PHP application to help protect its contents from being copied or modified. So I was typically like to install everything on CentOS using the yum package manger to make sure that updates for all applications are uniform and easy to do.

The actual package that needs to be installed to install Zend Optimizeris called php-zend-optimizer and isn’t readily available in many yum repositories. On a typical CentOS installation I add a couple extra yum repos including rpmforge and a repo that provides ruby based packages for CentOS. Anyhow after awhile of searching I finally located the atomic repository which did include the php-zend-optimizer package.

Install Atomic Repository On a CentOS Server:

1 wget -q -O - http://www.atomicorp.com/installers/atomic.sh | sh

The above command will download the atomic.sh script and then execute it. First the script installs the Atomic GPG key. Unless you have a Plesk server that you want packages for you can answer “n” when asked if you want to enable the Plesk yum repository. After this it will install the atomic.repo file in /etc/yum.repos.d/ directory. Its contents are located below.

Contents: atomic.repo

01 # Name: Atomic Rocket Turtle RPM Repository for CentOS / Red Hat Enterprise Linux 5 -
02 # URL: http://www.atomicrocketturtle.com/
03 [atomic]
04 name = CentOS / Red Hat Enterprise Linux $releasever - atomicrocketturtle.com
05 mirrorlist = http://www.atomicorp.com/mirrorlist/atomic/centos-5-$basearch
06 #mirrorlist = http://www.atomicorp.com/channels/atomic/centos/5/mirrors-atomic
07 enabled = 1
08 priority = 1
09 protect = 0
10 gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY.art.txt
11 gpgcheck = 1
12
13 # Almost Stable, release candidates for [atomic]
14 [atomic-testing]
15 name = CentOS / Red Hat Enterprise Linux $releasever - atomicrocketturtle.com - (Testing)
16 mirrorlist = http://www.atomicorp.com/mirrorlist/atomic-testing/centos-5-$basearch
17 enabled = 0
18 priority = 1
19 protect = 0
20 gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY.art.txt
21 gpgcheck = 1
22
23 # Untested, Unstable, known buggy, and incomplete packages.
24 #[atomic-bleeding]
25 #name = CentOS / Red Hat Enterprise Linux $releasever - atomicrocketturtle.com - (Bleeding)
26 #baseurl = http://www.atomicorp.com/channels/atomic-bleeding/centos/5/$basearch/
27 #enabled = 0
28 #priority = 1
29 #protect = 0
30 #gpgkey = file:///etc/pki/rpm-gpg/RPM-GPG-KEY.art.txt
31 #gpgcheck = 1

By default only the atmoic yum repository is installed however you can also enable the atomic-testing repository and atomic-bleeding repository. Once installed issued the below command to install php-zend-optimizer.

1 yum install php-zend-optimizer

Now that Zend Optimizer is installed you can run PHP applications protected by Zend Guard. The Zend Optimizer package is now easily managed with the yum package manager.

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics