Debian下手动安装LiteSpeed+PHP+MySQL教程
程序员文章站
2022-03-16 22:26:59
Debian系统一直是微魔和喜欢的Linux分枝,最小化的系统占用系统资源非常的少,而且操作起来也很简单。之前陆陆续续的折腾了一下LiteSpeed,最近就把一些手动安装的心得贴出来和大家分... 12-11-14...
如果实在懒得动脑,可以参考之前的文章,使用llsmp一键安装包。下面开始安装!
1.清理debian,去除不必要的软件包
2.安装mysql及相关的库文件
3.安装litespeed
4.编译php
5.配置eaccelerator
6.安装zend loader
1.清理debian,去除不必要的软件包
apt-get update
apt-get -y purge apache2-* bind9-* xinetd samba-* nscd-* portmap sendmail-* sasl2-bin
apt-get -y purge lynx memtester unixodbc python-* odbcinst-* sudo tcpdump ttf-*
apt-get autoremove && apt-get clean
2.安装mysql及相关的库文件
apt-get remove apache
apt-get update
apt-get upgrade
apt-get install autoconf gcc g++ libjpeg62-dev libpng12-dev libxml2-dev curl libcurl4-openssl-dev libmcrypt-dev libmhash-dev libfreetype6-dev patch make mcrypt mysql-server libmysql++-dev zlib-bin zlib1g-dev
设置autoconf
export php_autoconf=/usr/bin/autoconf
export php_autoheader=/usr/bin/autoheader
安装时中途会询问mysql的密码,连续输入两次即可
3.安装litespeed
访问litespeed官网获得最新版本的下载链接:http://litespeedtech.com/litespeed-web-server-downloads.html
cd /tmp
wget http://litespeedtech.com/packages/4.0/lsws-4.1.13-std-i386-linux.tar.gz
tar zxvf lsws*
cd lsws*
sh ./install.sh
出现许可协议,只需持续按下【空格】键到最后,输入yes(注意y大写)
交互回答如下问题
destination [/usr/local/lsws]: 回车
user name [admin]:管理员账号(默认admin)
password:管理员密码
retype password:密码确认
email addresses [root@localhost]:你的邮箱
user [nobody]:默认,直接回车
group [nogroup]:默认,直接回车
http port [8088]:写80
admin http port [7080]:litespeed面板端口,可默认,直接enter
setup up php [y/n]:默认,直接回车
suffix for php script(comma separated list) [php]:默认,直接回车
would you like to install awstats add-on module [y/n]?默认,直接回车
would you like to have litespeed web server started automatically when the server restarts [y/n]?默认,直接回车
would you like to start it right now [y/n]?默认,直接回车
此时不要关闭ssh窗口,后面还要用到~
4.编译php
访问litespeed管理后台:http://ip:7080
点击actions->compile php
选择php版本,点击next(我选择的是5.3.15)
在编译参数中填写为如下段,
'--with-pdo-mysql' '--with-mysql' '--with-mysqli' '--with-zlib' '--with-gd' '--enable-shmop' '--enable-track-vars' '--enable-sockets' '--enable-sysvsem' '--enable-sysvshm' '--enable-magic-quotes' '--enable-mbstring' '--with-iconv' '--with-litespeed' '--enable-inline-optimization' '--with-curl' '--with-curlwrappers' '--with-mcrypt' '--with-mhash' '--with-mime-magic' '--with-openssl' '--with-freetype-dir=/usr/lib' '--with-jpeg-dir=/usr/lib'小内存vps在编译的时候,会出现内存不够的问题”virtual memory exhausted: cannot allocate memory”,此时在参数栏处再上如下参数,重新编译一下应该就ok了~
--disable-fileinfo下面可选安装组件,我只选择了eaccelerator;
点击build php 5.x.x
litespeed开始下载包,下载完成后,点击next
此时不要刷新页面!
在ssh运行如下命令:
/usr/local/lsws/phpbuild/buildphp_manual_run.sh直到浏览器提示“*complete*”就算是大功告成了~
5.配置eaccelerator
php虽然安装好了,但之前我们选择的eaccelerator还需要配置一下
创建eaccelerator的缓存目录
mkdir /usr/local/eaccelerator_cache
chmod -r 777 /usr/local/eaccelerator_cache
编辑php.ini
cp /usr/local/lsws/php/php.ini /usr/local/lsws/lsphp5/lib/
vi /usr/local/lsws/lsphp5/lib/php.ini在php.ini后面加入如下字段
[eaccelerator]
zend_extension="/usr/local/lsws/lsphp5/lib/php/extensions/no-debug-non-zts-20090626/eaccelerator.so"
eaccelerator.shm_size="1"
eaccelerator.cache_dir="/usr/local/eaccelerator_cache"
eaccelerator.enable="1"
eaccelerator.optimizer="1"
eaccelerator.check_mtime="1"
eaccelerator.debug="0"
eaccelerator.filter=""
eaccelerator.shm_max="0"
eaccelerator.shm_ttl="3600"
eaccelerator.shm_prune_period="3600"
eaccelerator.shm_only="0"
eaccelerator.compress="1"
eaccelerator.compress_level="9"
eaccelerator.keys = "disk_only"
eaccelerator.sessions = "disk_only"
eaccelerator.content = "disk_only"
这时,可以打开http://ip/phpinfo.php看看eaccelerator安装的如何~
6.安装zend loader
wget http://downloads.zend.com/guard/5.5.0/zendguardloader-php-5.3-linux-glibc23-i386.tar.gz
tar zxvf zendguardloader-php-5.3-linux-glibc23-i386.tar.gz
mkdir -p /usr/local/zend/
cp zendguardloader-php-5.3-linux-glibc23-i386/php-5.3.x/zendguardloader.so /usr/local/zend/
编辑php.ini
vi /usr/local/lsws/lsphp5/lib/php.ini
添加如下字段
[zend.loader]
zend_loader.enable=1
zend_loader.disable_licensing=1
zend_loader.obfuscation_level_support=3
zend_loader.license_path=
zend_extension="/usr/local/zend/zendguardloader.so"
查看是否安装成功
/usr/local/lsws/lsphp5/bin/php -v
最后重启litespeed生效~
/etc/init.d/lsws restart
环境基本配置好了,但是要使用还需要添加虚拟主机等一系列的步骤和过程,微魔会在日后的教程中和大家分享~
1.清理debian,去除不必要的软件包
2.安装mysql及相关的库文件
3.安装litespeed
4.编译php
5.配置eaccelerator
6.安装zend loader
1.清理debian,去除不必要的软件包
复制代码
代码如下:apt-get update
apt-get -y purge apache2-* bind9-* xinetd samba-* nscd-* portmap sendmail-* sasl2-bin
apt-get -y purge lynx memtester unixodbc python-* odbcinst-* sudo tcpdump ttf-*
apt-get autoremove && apt-get clean
2.安装mysql及相关的库文件
复制代码
代码如下:apt-get remove apache
apt-get update
apt-get upgrade
apt-get install autoconf gcc g++ libjpeg62-dev libpng12-dev libxml2-dev curl libcurl4-openssl-dev libmcrypt-dev libmhash-dev libfreetype6-dev patch make mcrypt mysql-server libmysql++-dev zlib-bin zlib1g-dev
设置autoconf
复制代码
代码如下:export php_autoconf=/usr/bin/autoconf
export php_autoheader=/usr/bin/autoheader
安装时中途会询问mysql的密码,连续输入两次即可
3.安装litespeed
访问litespeed官网获得最新版本的下载链接:http://litespeedtech.com/litespeed-web-server-downloads.html
复制代码
代码如下:cd /tmp
wget http://litespeedtech.com/packages/4.0/lsws-4.1.13-std-i386-linux.tar.gz
tar zxvf lsws*
cd lsws*
sh ./install.sh
出现许可协议,只需持续按下【空格】键到最后,输入yes(注意y大写)
交互回答如下问题
复制代码
代码如下:destination [/usr/local/lsws]: 回车
user name [admin]:管理员账号(默认admin)
password:管理员密码
retype password:密码确认
email addresses [root@localhost]:你的邮箱
user [nobody]:默认,直接回车
group [nogroup]:默认,直接回车
http port [8088]:写80
admin http port [7080]:litespeed面板端口,可默认,直接enter
setup up php [y/n]:默认,直接回车
suffix for php script(comma separated list) [php]:默认,直接回车
would you like to install awstats add-on module [y/n]?默认,直接回车
would you like to have litespeed web server started automatically when the server restarts [y/n]?默认,直接回车
would you like to start it right now [y/n]?默认,直接回车
此时不要关闭ssh窗口,后面还要用到~
4.编译php
访问litespeed管理后台:http://ip:7080
点击actions->compile php
选择php版本,点击next(我选择的是5.3.15)
在编译参数中填写为如下段,
'--with-pdo-mysql' '--with-mysql' '--with-mysqli' '--with-zlib' '--with-gd' '--enable-shmop' '--enable-track-vars' '--enable-sockets' '--enable-sysvsem' '--enable-sysvshm' '--enable-magic-quotes' '--enable-mbstring' '--with-iconv' '--with-litespeed' '--enable-inline-optimization' '--with-curl' '--with-curlwrappers' '--with-mcrypt' '--with-mhash' '--with-mime-magic' '--with-openssl' '--with-freetype-dir=/usr/lib' '--with-jpeg-dir=/usr/lib'小内存vps在编译的时候,会出现内存不够的问题”virtual memory exhausted: cannot allocate memory”,此时在参数栏处再上如下参数,重新编译一下应该就ok了~
--disable-fileinfo下面可选安装组件,我只选择了eaccelerator;
点击build php 5.x.x
litespeed开始下载包,下载完成后,点击next
此时不要刷新页面!
在ssh运行如下命令:
/usr/local/lsws/phpbuild/buildphp_manual_run.sh直到浏览器提示“*complete*”就算是大功告成了~
5.配置eaccelerator
php虽然安装好了,但之前我们选择的eaccelerator还需要配置一下
创建eaccelerator的缓存目录
复制代码
代码如下:mkdir /usr/local/eaccelerator_cache
chmod -r 777 /usr/local/eaccelerator_cache
编辑php.ini
复制代码
代码如下:cp /usr/local/lsws/php/php.ini /usr/local/lsws/lsphp5/lib/
vi /usr/local/lsws/lsphp5/lib/php.ini在php.ini后面加入如下字段
[eaccelerator]
zend_extension="/usr/local/lsws/lsphp5/lib/php/extensions/no-debug-non-zts-20090626/eaccelerator.so"
eaccelerator.shm_size="1"
eaccelerator.cache_dir="/usr/local/eaccelerator_cache"
eaccelerator.enable="1"
eaccelerator.optimizer="1"
eaccelerator.check_mtime="1"
eaccelerator.debug="0"
eaccelerator.filter=""
eaccelerator.shm_max="0"
eaccelerator.shm_ttl="3600"
eaccelerator.shm_prune_period="3600"
eaccelerator.shm_only="0"
eaccelerator.compress="1"
eaccelerator.compress_level="9"
eaccelerator.keys = "disk_only"
eaccelerator.sessions = "disk_only"
eaccelerator.content = "disk_only"
这时,可以打开http://ip/phpinfo.php看看eaccelerator安装的如何~
6.安装zend loader
复制代码
代码如下:wget http://downloads.zend.com/guard/5.5.0/zendguardloader-php-5.3-linux-glibc23-i386.tar.gz
tar zxvf zendguardloader-php-5.3-linux-glibc23-i386.tar.gz
mkdir -p /usr/local/zend/
cp zendguardloader-php-5.3-linux-glibc23-i386/php-5.3.x/zendguardloader.so /usr/local/zend/
编辑php.ini
vi /usr/local/lsws/lsphp5/lib/php.ini
添加如下字段
复制代码
代码如下:[zend.loader]
zend_loader.enable=1
zend_loader.disable_licensing=1
zend_loader.obfuscation_level_support=3
zend_loader.license_path=
zend_extension="/usr/local/zend/zendguardloader.so"
查看是否安装成功
/usr/local/lsws/lsphp5/bin/php -v
最后重启litespeed生效~
/etc/init.d/lsws restart
环境基本配置好了,但是要使用还需要添加虚拟主机等一系列的步骤和过程,微魔会在日后的教程中和大家分享~
推荐阅读
-
Linux下nginx编译安装教程和编译参数详解
-
关于Mac下安装nodejs、npm和cnpm的教程
-
[视频教程] 如何在Linux深度系统deepin下安装docker
-
Windows7 64位 旗舰版下VirtualBox 4.3.12安装教程
-
Linux系统下安装jdbc与tomcat的图文教程
-
vs2008安装教程图解 附vs2008下载地址
-
Navicat Premium v12.0破解版怎么安装?Navicat Premium手动破解离线激活图文教程
-
MAC下Mysql5.7+ MySQL Workbench安装配置方法图文教程
-
[视频教程] ubuntu系统下安装最新版的MySQL
-
linux下安装tomcat安装及配置教程(在linux中怎么安装tomcat)