# LNMP安装步骤
- 使用putty或类似的SSH工具登陆VPS或服务器
- 登陆后运行
screen -S lnmp
1
如果提示screen: command not found 命令不存在可以执行:yum install screen 或 apt-get install screen安装。
详细内容参考screen教程 (opens new window)
- 安装LNMP稳定版
wget http://soft.vpser.net/lnmp/lnmp1.7.tar.gz -cO lnmp1.7.tar.gz && tar zxf lnmp1.7.tar.gz && cd lnmp1.7 && ./install.sh lnmp
1
如提示wget: command not found ,使用yum install wget 或 apt-get install wget 命令安装。
安装时间可能会几十分钟到几个小时不等,主要是机器的配置网速等原因会造成影响。
- 安装完成
# LNMP部署成功后管理命令
- LAMP状态统一管理命令
LNMP 1.2+状态管理: lnmp {start|stop|reload|restart|kill|status}
LNMP 1.2+各个程序状态管理: lnmp {nginx|mysql|mariadb|php-fpm|pureftpd} {start|stop|reload|restart|kill|status}
LNMP 1.1状态管理: /root/lnmp {start|stop|reload|restart|kill|status}
1
2
3
2
3
- LNMP状态管理具体命令
Nginx状态管理:/etc/init.d/nginx {start|stop|reload|restart}
MySQL状态管理:/etc/init.d/mysql {start|stop|restart|reload|force-reload|status}
Memcached状态管理:/etc/init.d/memcached {start|stop|restart}
PHP-FPM状态管理:/etc/init.d/php-fpm {start|stop|quit|restart|reload|logrotate}
PureFTPd状态管理: /etc/init.d/pureftpd {start|stop|restart|kill|status}
ProFTPd状态管理: /etc/init.d/proftpd {start|stop|restart|reload}
Redis状态管理: /etc/init.d/redis {start|stop|restart|kill}
1
2
3
4
5
6
7
2
3
4
5
6
7