在 UNIX 系统中,有一个背景程序会定时执行一些工作,这个程序在 FreeBSD 中称为「cron」。「cron」这个程序会定时去检查 /etc/crontab 及 /var/cron/tabs 中的档案,并执行其中的设定。/etc/crontab 可以让管理者设定要以什么使用者的身份去执行定时工作,而一般使用者如果要设定定时执行工作时,可以使用指令 crontab
作者归档:HXS
How to Enable IPFW on FreeBSD
Let’s modify rc.conf and enable IPFW. # ee /etc/rc.conf Add this to rc.conf: firewall_enable="YES" firewall_type="simple" firewall_script="/etc/ipfw.rules" firewall_logging="YES" Additional changes may be required with sysctl (in regards to maximum firewall rules allowed). If you have a very
为CentOS7上安装的DirectAdmin增加IP锁定功能
首先,下载官方的iptables规则 systemctl mask firewalld systemctl stop firewalld yum -y install iptables-services systemctl enable iptables cd /usr/libexec/iptables mv iptables.init iptables.init.backup wget -O iptables.init http://files.directadmin.com/services/all/block_ips/2.1/iptables chmod 75
DirectAdmin控制面板默认模板汉化包的安装
DirectAdmin 是一套国外开发的功能非常强劲的虚拟主机在线管理系统,安装方法请见:《DirectAdmin安装图文教程》这里提供的是DirectAdmin默认模版中文语言包,目前我的DA也在使用这个。 一、进入DA模板目录 cd /usr/local/directadmin/data/skins 二、下载和安装该包 1、下载汉化包(默认模版整套文件) wget http://hx
APACHE如何里一个站点绑定多个域名?
APACHE2如何里一个站点绑定多个域名?用ServerAlias 以前很笨,要使多个域名指向同一站点总是这样写: ServerAdmin [email protected] DocumentRoot /www/domain.com ServerName domain.com ServerAdmin [email protected] DocumentRoot /www/domain.com ServerName www.domain.com ServerAdmin [email protected] Docu
Apache和Nginx下WordPress的Rewrite规则
Apache 在Apache下,利用mod_rewrite来实现URL的静态化。 .htaccess的内容如下: # BEGIN WordPress RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] # END WordPress Nginx 方法一:在Nginx下配置WordPress的Rewrite还是比
关于Parse error: syntax error, unexpected end of file
这里提供给大家的是一个小经验分享,关于遇到Parse error: syntax error, unexpected end of file错误的解决办法,希望能够帮助到各位。 最近在FreeBSD上配置PHP环境,发现iProber.php探针总是显示如下错误,而雅黑探针显示正常 Parse error: syntax error, unexpected end of file in /usr/local/www/apache24/data
PHP Warning: date() [function.date]错误解决方法
在用PHP5.3以上的PHP版本时,只要是涉及时间的都会报一个如下的错误 “PHP Warning: date() [function.date]: It is not safe to rely on the system’s timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of th
FreeBSD10上用Ports安装配置Nginx+PHP5.5+MySQL5.5
以下的安装都是在FreeBSD 10.2版本上选择ports的安装方式完成的,其实选择pkg方式的话,安装后的配置过程也大致相同。 第一步,安装更新Ports: # portsnap fetch&&portsnap extract&&portsnap update 第二步,Nginx安装: # cd /usr/ports/www/nginx # make BATCH=YES install clean 装完nginx�
用Ports在FreeBSD上安装Nginx+FancyIndex
如果在FreeBSD上使用源码编译安装Nginx+FancyIndex,和Linux的安装过程基本类似,请参考我的另外一篇博文,这里我们采用Ports的方式在FreeBSD上安装Nginx+FancyIndex。 第一步,安装更新Ports: # portsnap fetch&&portsnap extract&&portsnap update 第二步,安装编译nginx cd /usr/ports/www/ng