Search results

  1. vivek

    postfix + dovecot smtp_auth problem

    /var/log/maillog will give you exact problem information. Send email and tail -f on /var/log/maillog
  2. vivek

    10 - 20 days before you can post to howto section

    VB has no such settings. Once has to setup groups and than prompt users automatically to those groups. Not hard to implement. Btw, VB 4.0 is out..
  3. vivek

    Merry Christmast and Happy New Year 2009

    Warm wishes & greetings for a Happy New Year.
  4. vivek

    How does knowing how to use FreeBSD/UNIX benefit you?

    It pays all my bills! Same here got good full time UNIX admin job.
  5. vivek

    cgi (perl) vs php

    FastCGI is way faster. I did it.. Yahoo, Google and many others use FastCGI.
  6. vivek

    Nginx tries to reload logs as www user on USR1 signal

    Set correct user in ngnix. From ver 0.7.53 recommended way to reopen file is /path/to/sbin/nginx -s reopen
  7. vivek

    Problem to run a bash script like a daemon at boot

    Use full path or set PATH in script.
  8. vivek

    cgi (perl) vs php

    +1 for python! Do not go for CGI php, perl or python. You can use them but you will endup doing something wrong and security is a big issue for custom made apps. These days you have two options: 1) Use ready to use cms such as Wordpress, drupal, Joomla (to name a few). Most of these comes with...
  9. vivek

    Syntax highlighting for different code

    Considering that DD has to add code tags so many times a day, I don't think so it will make any difference to noob posting code.
  10. vivek

    Portaudit Question

    Almost all problem are documented in /usr/ports/UPDATING and /usr/src/UPDATING. Did you install portaudit port and cron job is running to get updates?
  11. vivek

    How I understand my ISP use squid

    Heh .. squid can be configure to hide IP and just show users real IP. Also, many ISP runs transparent proxies.
  12. vivek

    Warning upon boot

    You don't have static IPs? For server avoid using DHCP. Setup static with correct netmask, and route.
  13. vivek

    FreeBSD as Loadbalancer - Bad performance

    Well at least your carp is working, I'm suffering from other issue under FreeBSD 8. We are using FreeBSD 7.2 and at pick pushing 60-80Mbps without any problem. I really wanted to use 8.0 but it is not working..
  14. vivek

    rsync -> avoiding the password prompt for SSH

    It is possible, but it is unsecure as your password is exposed in a clear text format in shell or expect script itself. Google for sshpass utility. It does the same thing. sshpass -p 'PassWord' ssh -o StrictHostKeyChecking=no username@server.example.com OR sshpass -p 'PassWord' rsync command
  15. vivek

    ifa_add_loopback_route: insertion failed

    Thanks DD! Okay, I've switched back to 7.2 x( (well just swapped the cables between two sets of boxes) as Monday traffic will be back. I really wanted to use 8.0 stable as it has stack protection and other cool features. I will send my findings to freebsd-pf mailing list on Monday and see if...
  16. vivek

    ifa_add_loopback_route: insertion failed

    I've tested the same config with 7.2 stable and there is no error or message. I think this is Stable 8 issue. I'm still looking into it. However, the following claims that it is patched in Revision 197227: http://www.mail-archive.com/svn-src-all@freebsd.org/msg13536.html...
  17. vivek

    ifa_add_loopback_route: insertion failed

    Yes, static routing is there. Here is my rc.conf # connected to the Internet defaultrouter="74.xx.yy.7" # em0 ifconfig_em0="inet 10.10.29.70 netmask 255.255.255.192 media 100baseTX mediaopt full-duplex" ifconfig_em0_alias0="inet 10.9.167.67 netmask 255.255.255.0" # em1 ifconfig_em1="inet...
  18. vivek

    ifa_add_loopback_route: insertion failed

    Naa it is not related to IPv6, I can repeate this with the following ifconfig command: ifconfig carp0 down After some time ifconfig carp0 up I believe it is a *bug*, I will send it to stable or may be PR. Let me know. Meanwhile I'm trying 7.2 and see if same error occurs.
  19. vivek

    ifa_add_loopback_route: insertion failed

    Oh, are you using IPv6? I think they are coming after adding IPv6 ips. I will remove IPv6 and report back my findings.
  20. vivek

    ifa_add_loopback_route: insertion failed

    I'm getting the following in /var/log/messages ifa_add_loopback_route: insertion failed What does it mean? Google is not helping either. There are two Ethernet cards and kernel compiled with device carp option and nothing special.
Back
Top