博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LNMP状态管理命令
阅读量:5935 次
发布时间:2019-06-19

本文共 3179 字,大约阅读时间需要 10 分钟。

LNMP状态管理命令:

LNMP状态管理: /root/lnmp {start|stop|reload|restart|kill|status}

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}

如重新启动LNMP,输入命令:/root/lnmp restart 就可以,单独重新启动mysql:/etc/init.d/mysql restart

LNMPA状态管理命令:

LNMPA状态管理: /root/lnmpa {start|stop|reload|restart|kill|status}

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}
PureFTPd状态管理: /etc/init.d/pureftpd {start|stop|restart|kill|status}
ProFTPd状态管理: /etc/init.d/proftpd {start|stop|restart|reload}
Apache状态管理:/etc/init.d/httpd {start|stop|restart|graceful|graceful-stop|configtest|status}

 /etc/init.d/network restart 重新启动网卡
 service iptables restart 重新启动防火墙
 vim /etc/sysconfig/iptables
防火墙设置:

# Firewall configuration written by system-config-firewall# Manual customization of this file is not recommended.*filter:INPUT ACCEPT [0:0]:FORWARD ACCEPT [0:0]:OUTPUT ACCEPT [0:0]-A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT-A INPUT -p icmp -j ACCEPT-A INPUT -i lo -j ACCEPT-A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT-A INPUT -j REJECT --reject-with icmp-host-prohibited-A FORWARD -j REJECT --reject-with icmp-host-prohibitedCOMMIT

server

server { listen 80; #listen [::]:80; server_name www.*******.com ; index index.html index.htm index.php default.html default.htm default.php; root /home/wwwroot/www.******.com; include other.conf; #error_page 404 /404.html; location ~ [^/]\.php(/|$) { # comment try_files $uri =404; to enable pathinfo try_files $uri =404; fastcgi_pass unix:/tmp/php-cgi.sock; fastcgi_index index.php; include fastcgi.conf; #include pathinfo.conf; } location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$ { expires 30d; } location ~ .*\.(js|css)?$ { expires 12h; } access_log /home/wwwlogs/www.******.com.log access; }

php函数禁用:

改动为:disable_functions = passthru,exec,system,chroot,scandir,chgrp,chown,shell_exec,proc_open,proc_get_status,ini_alter,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server,escapeshellcmd,dll,popen,disk_free_space,checkdnsrr,checkdnsrr,getservbyname,getservbyport,disk_total_space,posix_ctermid,posix_get_last_error,posix_getcwd, posix_getegid,posix_geteuid,posix_getgid, posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid, posix_getppid,posix_getpwnam,posix_getpwuid, posix_getrlimit, posix_getsid,posix_getuid,posix_isatty, posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid, posix_setpgid,posix_setsid,posix_setuid,posix_strerror,posix_times,posix_ttyname,posix_uname
找到:;date.timezone =改动为:date.timezone = PRC #设置时区找到:expose_php = On改动为:expose_php = Off #禁止显示php版本号的信息找到:short_open_tag = Off改动为:short_open_tag = ON #支持php短标签

转载地址:http://eoctx.baihongyu.com/

你可能感兴趣的文章
新的UWP和Win32应用程序分发模型
查看>>
乔布斯的64周年诞辰,苹果滞销的第N天
查看>>
Apache CarbonData里程碑式版本1.3发布
查看>>
组合式测试:移动测试服务的发展趋势
查看>>
一线:阿里云不做SaaS,那这件事会交给谁?
查看>>
Netflix混沌工程手册Part 2:混沌工程原则
查看>>
Serialize and Deserialize Binary Tree & BST
查看>>
如何打造一流的视觉AI技术
查看>>
Redux异步方案选型
查看>>
干货 | Api 体系架构分享(下)
查看>>
【Java深入学习系列】之值传递Or引用传递?
查看>>
总结一下顶级域名和子级域名之间的cookie共享和相互修改、删除
查看>>
使用Spark分析拉勾网招聘信息(二): 获取数据
查看>>
利用Githug学习Github / Githug Challenge Log
查看>>
自定义控件之完全自定义
查看>>
跨平台App开发的新趋势
查看>>
PEP 8 摘录
查看>>
Nginx+Https配置
查看>>
[LintCode/LeetCode] Edit Distance
查看>>
ReactNative导航设计与实现
查看>>