I used to use djbdns in every situation I have, so far I use it in FreeBSD and Ubuntu server 8.0.4 LTS I always try to install djbdns as first option for dns stuff. Yesterday I met situation where clarkconnect 4.2 installed as internet gateway in internet cafe, the owner choose clarkconnect as internet gateway […]
Using temporer email address to fight spam
Giving email address to anyone isn’t wise specially when U use that email address for daily activity, work and your mailing list. Its OK to give our email to other provider as long we know their credibility that they won’t share or sell our email address. Many people seem use interesting content for trapping innocent […]
Detect RB44GV on FreeBSD 7
New ethernet card we order arrived yesterday, its RB44GV from mikrotik. I just curious to see if its work with my FreeBSD box 🙂 materibasuki# ifconfig -a em0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500 options=19b<RXCSUM,TXCSUM,VLAN_MTU,VLAN_HWTAGGING,VLAN_HWCSUM,TSO4> ether 00:1a:92:b3:db:c2 inet 172.88.1.7 netmask 0xfffff000 broadcast 172.88.15.255 media: Ethernet autoselect (1000baseTX <full-duplex>) status: active em1: flags=8802<BROADCAST,SIMPLEX,MULTICAST> metric 0 mtu 1500 […]
Make Virtual Host in Engine X (nginx)
Since last time I install php-fpm in my freebsd box I still looking way to make virtualhost. I think its not easy to make vhost in nginx but I’m wrong 🙂 Just add : server { directive } will add new vhost. Full sample from my vhost : server { listen 80; server_name sandbox.digitalfusi.com; location […]
MYSQL server has gone away
Its very rare case when I see message : “MYSQL server has gone away†, a few things to consider are : * Check variable max_timeout * Check variable max_allowed_packet These setting available in my.ini or my.cf file, edit the value and restart mysql daemon. Example : max_allowed_packet=16M max_timeout=28800 Try again to import database using […]