debian下安装LNMP环境(一)

配置LNMP

1、查看本地安装的debian版本信息

lsb_release -icr  //最全面的
cat /etc/issue
cat /etc/os-release

2、更新debian库
首先明确我们是debian 8.8
首先新建个源文件 /etc/apt/sources.list.d/dotdeb.list ,加入这几行

deb http://packages.dotdeb.org jessie all
deb-src http://packages.dotdeb.org jessie all

deb http://packages.dotdeb.org jessie-nginx-http2 all
deb-src http://packages.dotdeb.org jessie-nginx-http2 all

然后导入 Dotdeb 的 GnuPG key

wget https://www.dotdeb.org/dotdeb.gpg
apt-key add dotdeb.gpg

接着更新一下系统并且安装一些必要的软件

apt-get update 

3、查看目前我们可用包的最新列表

(1) aptitude update //查看所有可用包列表

(2)aptitude search nginx //查看此时所有可用的nginx包

p   nginx          - small, powerful, scalable web/proxy server    
p   nginx-common   - small, powerful, scalable web/proxy server - c
p   nginx-doc     - small, powerful, scalable web/proxy server - d
p   nginx-extras  - nginx web/proxy server (extended version)      //扩展版本
p   nginx-extras-dbg - nginx web/proxy server (extended version) - de
p   nginx-full    - nginx web/proxy server (standard version)       //标准版本
p   nginx-full-dbg     - nginx web/proxy server (standard version) - de
p   nginx-light     - nginx web/proxy server (basic version)        
p   nginx-light-dbg   - nginx web/proxy server (basic version) - debug
p   nginx-naxsi      - nginx web/proxy server (version with naxsi)   
p   nginx-naxsi-dbg   - nginx web/proxy server (version with naxsi) - 

(3)更新源遇到的问题

一直是:waiting for helpers
解决方案:进入/var/cache/apt/archives/文件夹,删除其中partial这个文件夹即可
rm -rf partial

4、安装nginx

(1)执行代码

apt-get install nginx

(2)查看nginx版本

nginx -v

(3)开启nginx服务

service nginx start

(4)查看nginx进程

ps -ef | grep nginx

5、安装mysql

(1)安装

apt-get install -y mysql-server mysql-client

(2)输入密码

(3)安装成功之后执行一次安全设置,

按提示往下走就行,过程中会询问是否更改root密码、是否移除匿名用户、是否禁止root远程登录等,自己按需配置即可。

具体参考链接:https://sb.sb/ubuntu-server-16-04-install-nginx-php-mysql/
解释:主要是为了账号密码的安全性

(4)登录mysql

mysql -u root -p

(5)创建用户等操作
参考链接:http://blog.csdn.net/ljfphp/article/details/78182778

(6)查看mysql进程

ps -ef |grep mysql
会直接显示mysql的进程信息

6、安装php5.6

(1)安装
使用apt工具安装:

apt-get install php5-fpm php5-gd php5-mysql php5-memcache php5-curl

(2)安装memcached

如上命令安装了php5-memcache的扩展,因此继续安装Memcached:

apt-get install memcached

(3)查看php版本号

php5-fpm -v

(4)查看php安装的扩展

php -m

7、安装完毕

      到这里,nginx,php5.6,mysql都已经安装成功,接下来就是调试了,把各个程序连接起来。敬请期待第二篇之调试篇。

end

Ubuntu Debian(NGINX/PHP/MYSQL)快速配置工具LNMP安装 Ubuntu Debian安装基于debian apt-get 快速配置安装nginx php mysql等。LNMP安装Ubuntu Debian(NGINX/PHP/MYSQL)快速配置工具经测试,整个过程约2-5分钟完成。各种组件均使用最新稳定版。加入php host功能限制每个网站的访问目录,防止跨目录,更安全!解决nginx 0day漏洞! DebianLNMP特点:1. 独特的DebianLNMP安全增强设置。2. 新软件库基于http://www.dotdeb.org/可保持同步更新。3. Nginx MySQL PHP 全部升级到最新稳定版本。4. 快捷的安装脚本,快速安装开源LNMP软件组合。5. 适合懒人+初学者。随着时间变迁,安装的版本会是更新版本。6. 最快安装、最新稳定版、最省资源! Ubuntu Debian(NGINX/PHP/MYSQL)LNMP安装 直接给出安装方法:最快安装、最新稳定版、最省资源! root@DebianLNMP-Jimmyli:~# wget http://sourceforge.net/projects/debian-lnmp/files/DebianLNMP/DebianLNMP-Jimmyli.sh root@DebianLNMP-Jimmyli:~# sh DebianLNMP-Jimmyli.sh 输入域名,回车。 接着输入MYSQL root用户密码,再次输入确认MYSQL root用户密码,等待安装完成。整个过程约2-5分钟。 安装完成了! 一如既往,安装快捷方便、迅速! 直接给出安装方法:最快安装、最新稳定版、最省资源! 两步安装即完成命令(Pro加强版) root@DebianLNMP-Jimmyli:~# wget http://sourceforge.net/projects/debian-lnmp/files/DebianLNMP/DebianLNMP-Pro-Jimmyli.sh root@DebianLNMP-Jimmyli:~# sh DebianLNMP-Pro-Jimmyli.sh DebianLNMP加强版? 延续DebianLNMP全部功能...新增PHP5插件ImageMagick、XCache、memcache、curl、MCrypt。 DebianLNMP一键安装LNMP状态管理: 安装完成后,管理Nginx、PHP5、MySQL已经有标准管理命令,其状态管理沿用了Linux通用性。 Nginx状态管理 /etc/init.d/nginx {start|stop|restart|reload|force-reload|status|configtest}PHP5-FPM状态管理 /etc/init.d/php5-fpm {start|stop|status|restart|reload|force-reload}MySQL状态管理/etc/init.d/mysql {start|stop|restart|reload|force-reload|status} Nginx nginx.conf:/etc/nginx/nginx.conf MySQL my.cnf:/etc/mysql/my.cnf PHP php.ini:/etc/php5/fpm/php.ini DebianLNMP一键安装LNMP效果图: Ubuntu Debian(NGINX/PHP/MYSQL)快速配置工具 Debian6系统下使用之前发布的“DebianLNMP”服务器软件套件,DebianLNMP一键安装包是一个快捷的服务器套件,轻轻松松全自动安装LNMP(Nginx、MySQL、PHP、phpMyAdmin)可直接用再生产环境。现在我们已经在Debian/UbuntuVPS(VDS)或独立主机安装LNMP安装最快最新(Nginx、MySQL、PHP、phpMyAdmin)生产环境。 下面介绍配套的DebianLNMP虚拟主机管理工具,快速创建Nginx PHP5.3 MySQL配置。 什么是DebianLNMP虚拟主机管理工具? 使用DebianLNMP一键安装包,安装好Nginx/PHP5.3/MySQL环境后,需要创建添加、新建、删除虚拟主机。它能管理多域名(子域名)的虚拟主机,在Debian系统中以向导的形式管理,按照向导问题选择相应功能即可快速创建。 Debian虚拟主机管理软件?Debian系统安装LNMP环境只需要两条命令,Debian6一键安装DebianLNMP最快.最新.最省!同样,管理LNMP虚拟主机
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

铁柱同学

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值