假设希望每隔3分钟就访问一个网站, 在linux下, 可以用:
crontab -e
然后输入如下命令:
*/3 * * * * curl https://www.libaocai.com
转载请注明:苏demo的别样人生 » CentOS设置cro...
苏 demo
8年前 (2016-10-26)
2247℃
0评论
0喜欢
查看磁盘:
fdisk -l
parted /dev/xvdb
mklabel gpt
mkpart primary 0 -1
Ignore
quit
格式化磁盘
mkfs.ext4 /dev/xvdb
创建目录链接关系
mkdir /data
chmod 777 ...
苏 demo
8年前 (2016-10-24)
2179℃
0评论
0喜欢
Linux kernel 自 2.6.28 开始正式支持新的文件系统 Ext4。 Ext4 是 Ext3 的改进版,修改了 Ext3
中部分重要的数据结构,而不仅仅像 Ext3 对 Ext2 那样,只是增加了一个日志功能而已。Ext4
可以提供更佳的性能和可靠性,还有更为...
苏 demo
8年前 (2016-10-24)
2221℃
0评论
0喜欢
这里,如果是单次重定向用 redirect, 如果永久跳转用 permanent,这里用 permanent
{
listen 80;
server_name xxx.com www.xxx.co...
苏 demo
8年前 (2016-10-18)
1915℃
0评论
0喜欢
apachetop 是一个命令行工具,它的运行原理是通过分析 apache 服务器的日志文件,来向用户展示服务器的运行情况。
安装:
yum install apachetop
使用:
apachetop
监控实时访问日志
apachetop -f /var/log/httpd/...
苏 demo
8年前 (2016-10-14)
3020℃
0评论
0喜欢
查看状态:
service crond status
启动服务:
service crond start
命令格式说明:
#格式
crontab [-u user] file
crontab [-u user] [ -e | -l | -r ]
命令参...
苏 demo
8年前 (2016-09-10)
2378℃
0评论
0喜欢
vi /etc/sysconfig/network-scripts/ifcfg-eth0
然后设置
DEVICE=eth0
BOOTPROT=static
IPADDR=192.168.1.200
GATEWAY=192.168.1.1
NETMASK=255.255.25...
苏 demo
8年前 (2016-08-18)
2157℃
0评论
0喜欢
一、备份VisualSVN项目
1. 现在要使用Linux作为svn服务器,之前是在windows Server 2008上的,用的是VisualSVN, 如下图所示。
2. 现在svn中有一个项目fpp,需要将fpp这个项目导出到linux环境下。运行cmd,输入命令 svn...
苏 demo
8年前 (2016-08-18)
3136℃
0评论
0喜欢
cheat安装
#cheat命令需要python环境的支持,需要安装python和pip
yum install python-pip –ypip install --upgrade pippip install cheat
#或者通过github安装
pip ins...
苏 demo
8年前 (2016-08-09)
1930℃
0评论
0喜欢
一、下载tomcat
wget http://mirrors.cnnic.cn/apache/tomcat/tomcat-7/v7.0.70/bin/apache-tomcat-7.0.70.tar.gz
官方 Apache Tomcat 的下载页面:http://tom...
苏 demo
8年前 (2016-08-09)
2472℃
0评论
0喜欢