Debian下手动安装LiteSpeed+PHP+MySQL教程
网络安全 2021-07-04 10:19www.168986.cn网络安全知识
如果实在懒得动脑,可以参考之前的文章,使用llsmp一键安装包。狼蚁网站SEO优化开始安装!
1.清理Debian,去除不必要的软件包
2.安装MySQL及相关的库文件
3.安装LiteSpeed
4.编译PHP
5.配置eAelerator
6.安装Zend Loader
1.清理Debian,去除不必要的软件包
apt-get update
apt-get -y purge apache2- bind9- xid 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 g 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./litespeed-web-server-downloads.html
cd /tmp
wget http://litespeedtech./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(ma 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狼蚁网站SEO优化可选安装组件,我只选择了eAelerator;
点击Build PHP 5.x.x
LiteSpeed开始下载包,下载完成后,点击Next
此时不要刷新页面!
在SSH运行如下命令
/usr/local/lsws/phpbuild/buildphp_manual_run.sh直到浏览器提示“Complete”就算是大功告成了~
5.配置eAelerator
PHP虽然安装好了,但之前我们选择的eAelerator还需要配置一下
创建eAelerator的缓存目录
mkdir /usr/local/eaelerator_cache
chmod -R 777 /usr/local/eaelerator_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后面加入如下字段
[eaelerator]
zend_extension="/usr/local/lsws/lsphp5/lib/php/extensions/no-debug-non-zts-20090626/eaelerator.so"
eaelerator.shm_size="1"
eaelerator.cache_dir="/usr/local/eaelerator_cache"
eaelerator.enable="1"
eaelerator.optimizer="1"
eaelerator.check_mtime="1"
eaelerator.debug="0"
eaelerator.filter=""
eaelerator.shm_max="0"
eaelerator.shm_ttl="3600"
eaelerator.shm_prune_period="3600"
eaelerator.shm_only="0"
eaelerator.press="1"
eaelerator.press_level="9"
eaelerator.keys = "disk_only"
eaelerator.sessions = "disk_only"
eaelerator.content = "disk_only"
这时,可以打开http://ip/phpinfo.php看看eAelerator安装的如何~
6.安装Zend Loader
wget http://downloads.zend./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.配置eAelerator
6.安装Zend Loader
1.清理Debian,去除不必要的软件包
复制代码
代码如下:apt-get update
apt-get -y purge apache2- bind9- xid 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 g 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./litespeed-web-server-downloads.html
复制代码
代码如下:cd /tmp
wget http://litespeedtech./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(ma 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狼蚁网站SEO优化可选安装组件,我只选择了eAelerator;
点击Build PHP 5.x.x
LiteSpeed开始下载包,下载完成后,点击Next
此时不要刷新页面!
在SSH运行如下命令
/usr/local/lsws/phpbuild/buildphp_manual_run.sh直到浏览器提示“Complete”就算是大功告成了~
5.配置eAelerator
PHP虽然安装好了,但之前我们选择的eAelerator还需要配置一下
创建eAelerator的缓存目录
复制代码
代码如下:mkdir /usr/local/eaelerator_cache
chmod -R 777 /usr/local/eaelerator_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后面加入如下字段
[eaelerator]
zend_extension="/usr/local/lsws/lsphp5/lib/php/extensions/no-debug-non-zts-20090626/eaelerator.so"
eaelerator.shm_size="1"
eaelerator.cache_dir="/usr/local/eaelerator_cache"
eaelerator.enable="1"
eaelerator.optimizer="1"
eaelerator.check_mtime="1"
eaelerator.debug="0"
eaelerator.filter=""
eaelerator.shm_max="0"
eaelerator.shm_ttl="3600"
eaelerator.shm_prune_period="3600"
eaelerator.shm_only="0"
eaelerator.press="1"
eaelerator.press_level="9"
eaelerator.keys = "disk_only"
eaelerator.sessions = "disk_only"
eaelerator.content = "disk_only"
这时,可以打开http://ip/phpinfo.php看看eAelerator安装的如何~
6.安装Zend Loader
复制代码
代码如下:wget http://downloads.zend./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
环境基本配置好了,要使用还需要添加虚拟主机等一系列的步骤和过程,微魔会在日后的教程中和大家分享~
网络安全培训
- 网络安全常见漏洞类型 网络安全常见漏洞类型包
- 绿色上网顺口溜七言 绿色上网的宣传标语
- 网络安全等级保护测评 网络安全等级保护条例
- 如何加强网络安全 网络安全隐患有哪些
- 网络安全防护措施有哪些 网络安全等级保护等级
- 如何保障网络安全 如何做好网络安全保障工作
- 维护网络安全的措施有哪些 维护网络安全的主要
- 网络安全工程师好学吗 2024年网络安全工程师好学
- 网络安全注意事项简短 网络安全注意事项100字
- 网络安全面临的挑战 当前网络安全面临的新问题
- 网络安全培训哪个靠谱 网络安全培训找哪个
- 普及网络安全知识内容 普及网络安全教育
- 网络安全防范知识宣传内容 网络安全防范知识宣
- 如何做好网络安全工作 如何做好网络安全工作
- 网络安全常识的丰富内容 网络安全的相关知识
- 青少年网络安全教育片 青少年网络安全知识讲座