上一页 1 ··· 7 8 9 10 11 12 13 14 15 下一页
摘要: 1、添加用户: useradd handongyu 2、查看所有用户 cat /etc/passwd 查看某一用户用 cat /etc/passwd |grep root 3、查看所有组 cat /etc/group 4、查看当前登录用户的组内成员 groups5、查看test用户所在的组,以及组内 阅读全文
posted @ 2016-11-04 14:29 阳光小白 阅读(214) 评论(0) 推荐(0) 编辑
摘要: linux grep命令详解 简介 grep (global search regular expression(RE) and print out the line,全面搜索正则表达式并把行打印出来)是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来。 Unix的grep家 阅读全文
posted @ 2016-11-04 11:31 阳光小白 阅读(200) 评论(0) 推荐(0) 编辑
摘要: nginx、php-fpm、mysql用户权限解析 nginx、php-fpm、mysql用户权限解析 先来做个说明:nginx本身不能处理PHP,它只是个web服务器。当接收到客户端请求后,如果是php请求,则转发给php解释器处理,并把结果返回给客户端。如果是静态页面的话,nginx自身处理,然 阅读全文
posted @ 2016-11-04 09:47 阳光小白 阅读(341) 评论(0) 推荐(0) 编辑
摘要: Nginx配置文件详细说明 在此记录下Nginx服务器nginx.conf的配置文件说明, 部分注释收集与网络. #运行用户user www-data; #启动进程,通常设置成和cpu的数量相等worker_processes 1; #全局错误日志及PID文件error_log /var/log/n 阅读全文
posted @ 2016-10-28 15:22 阳光小白 阅读(208) 评论(0) 推荐(0) 编辑
摘要: vi /etc/ssh/sshd_config 找到#Port 22一段,这里是标识默认使用22端口,修改为如下: Port 22 Port 50000 然后保存退出 执行/etc/init.d/sshd restart 这样SSH端口将同时工作与22和50000上。 修改iptables配置文件: 阅读全文
posted @ 2016-10-25 16:51 阳光小白 阅读(371) 评论(0) 推荐(0) 编辑
摘要: 1、查看是否安装了某程序: rpm -qa|grep ssh 2、复制某文件: cp nginx.conf nginx.conf.bak 3、移动某文件: mv nginx.conf nginx.conf.bak 3(01)、从 远程 复制到 本地 scp root@www.cumt.edu.cn: 阅读全文
posted @ 2016-10-25 15:43 阳光小白 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 1、参数修改: /etc/ssh/sshd_config 问价里边的 printlastlog 设置为yes /etc/ssh/sshd_config 问价里边的 printmotd 设置为yes 2、添加lastlog日子文件 /var/log/文件夹里边添加 lastlog文件。 3、添加登录欢 阅读全文
posted @ 2016-10-25 15:38 阳光小白 阅读(12133) 评论(0) 推荐(0) 编辑
摘要: cat /etc/redhat-release 阅读全文
posted @ 2016-10-25 15:35 阳光小白 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 一、安装pcre: 二、下载proxy_cache插件 三、安装tengine yum install openssl openssl-devel -y 如果编译的问题的话,看看是不是下面的原因: 注意: --with-pcre=/usr/local/src/pcre-8.21指向的是源码包解压的路 阅读全文
posted @ 2016-10-24 14:43 阳光小白 阅读(234) 评论(0) 推荐(0) 编辑
摘要: nginx启动、重启、关闭 一、启动 cd usr/local/nginx/sbin ./nginx 二、重启 更改配置重启nginx kill -HUP 主进程号或进程号文件路径 或者使用 cd /usr/local/nginx/sbin ./nginx -s reload 判断配置文件是否正确 阅读全文
posted @ 2016-10-24 14:42 阳光小白 阅读(450) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 下一页