1 man 在线查询 man ls
2 s 查看目录与档案 ls -la
3 ln 建立链接文件 ln -fs /usr/local/apache/etc/httpd.conf /etc/httpd.conf
4 more 分页显示 more 文件名称
5 cd 切换目...
苏 demo
8年前 (2017-02-17)
2480℃
0评论
0喜欢
写在前面:
PHP 配置默认允许服务器在 HTTP 响应头 X-Powered-By 中显示安装在服务器上的 PHP 版本。
有时候为了安全或者隐秘,需要隐藏此类信息的显示;
操作步骤:
1.查找php.ini 配置路径
php -i | grep "Loaded Configu...
苏 demo
8年前 (2017-02-05)
2933℃
0评论
0喜欢
centos 虽然内置了 ruby ,可以通过yum 进行安装,但是版本相对较低。
这里附上编译安装步骤:
一、下载Ruby源码包
wget ftp://ftp.ruby-lang.org/pub/ruby/2.1/ruby-2.1.7.tar.gz
二、解压安装Ruby
tar...
苏 demo
8年前 (2017-01-12)
2601℃
0评论
0喜欢
shell 脚本:
#!/bin/bash
#BY MRCO,2015-06-10
#MODIFY 2015-06-10
#ping当前网段内在线的主机,以便产生arp记录.
subnet=`route -n|grep "UG" |awk '{print $2}'...
苏 demo
8年前 (2017-01-10)
3215℃
0评论
0喜欢
案例描述:
客户机 A (windows 10) , 测试服务器B(centos)
操作步骤
1.客户机A ,使用xshell 生成 公钥和私钥;
点击用户身份验证,选择方法: Public Key ,然后输入在测试服务器增加的账户(该账户只是useradd 未设置过密码)作为...
苏 demo
8年前 (2017-01-10)
3261℃
0评论
3喜欢
一、查看启动你php的进程的用户是谁。
可以通过在命令行执行:ps -ef | grep php来看。或者在php中执行 echo exec(‘whoami’) 来查看。centos下默认会是nobody。 nobody默认没有任何权限。
此时先自己添加一...
苏 demo
8年前 (2017-01-04)
3174℃
0评论
0喜欢
绑定IP
cd /usr/load/redis/etc
vim redis.conf
然后搜索找到 bind
(PS:补充说明,如果使用阿里云主机,这里bind填写 内网ip 即可)
设置密码:
vim redis.conf
配置
requirepass 123456
...
苏 demo
8年前 (2016-12-13)
2998℃
0评论
0喜欢
命令行:
find /data -name libaocai
find 的基本语法:
find path expression search-term
centos 安装 locate
yum install mlocate
ubuntu
apt-get install mloc...
苏 demo
8年前 (2016-12-08)
2464℃
0评论
0喜欢
下载安装包并进行解压缩:
wget http://www.xunsearch.com/download/xunsearch-full-latest.tar.bz2
tar -xjf xunsearch-full-latest.tar.bz2
解压缩后执行脚本进行安装:
cd x...
苏 demo
8年前 (2016-11-29)
2609℃
0评论
1喜欢
命令:
yum install curl-devel expat-devel gettext-devel openssl-devel zlib-devel asciidoc
yum install gcc perl-ExtUtils-MakeMaker
wget ht...
苏 demo
8年前 (2016-11-20)
2843℃
0评论
0喜欢