Search results

  1. I

    What's wrong with my DNS zone file?

    Yes, of course - the domain is registered. Due to some sensitivity for my client, I've changed the domain name to a generic name. The config files are exactly the same - except for the domain and IP - on the server. The child name servers have also been registered, and name servers are...
  2. I

    What's wrong with my DNS zone file?

    I'm trying to set up a domain using PowerDNS within a FreeBSD jail. Everything is configured correctly. I even tested using dig @69.60.111.133 myclientdomain.com from my local machine and it worked. However, it does not get propagated to any name servers and it has been more than 24 hours - I...
  3. I

    Limiting resources (CPU, memory) for Jails - rctl

    Does not work in 9.1 Well, I tried to do the same thing in FreeBSD 9.1 and it failed: /usr/src/sys/amd64/acpica/acpi_switch.S: Assembler messages: /usr/src/sys/amd64/acpica/acpi_switch.S:146: Error: no such instruction: 'xsetbv' /usr/src/sys/amd64/acpica/acpi_switch.S:147: Error: no such...
  4. I

    Limiting resources (CPU, memory) for Jails - rctl

    trasz@: Thanks for the update, you said "9-STABLE should get CPU percentage limits in a month or so"... do you mean I can expect this is the 9.1 release expected in December (or soon)? I'll happily rejoice if so... :-) Thanks! Kevin.
  5. I

    Veriexec on FreeBSD?

    I came across these web pages: http://www.manualpages.de/NetBSD/NetBSD-5.1/man8/veriexec.8.html http://www.manualpages.de/NetBSD/NetBSD-5.1/man4/veriexec.4.html ... the URL says it is NetBSD documentation, but within the content it seems that it is written for FreeBSD. Does anyone one...
  6. I

    Limiting resources (CPU, memory) for Jails - rctl

    As we are nearing the release of FreeBSD version 9.1, are there any improvements over rctl in this release?
  7. I

    pf on FreeBSD or OpenBSD - any differences?

    What about SYN proxy (protect servers against SYN flood attacks)? Are the implementation (ie. strength of protection) the same in FreeBSD and OpenBSD? Reference: http://onlamp.com/pub/a/bsd/2004/04/15/pf_developers.html
  8. I

    pf on FreeBSD or OpenBSD - any differences?

    Are there any differences, in terms of security features and functionalities, between running the pf firewall under FreeBSD and OpenBSD? Do you think it is better to consider setting up a separate OpenBSD server just to run the pf firewall, or vice versa? And why?
  9. I

    Mysterious execution of "find" command

    Why does FreeBSD execute this find command: 24795 root 1 24 0 10052K 2632K zio->i 3 0:02 5.86% find I've about five of them running on an idle machine. What does this do?
  10. I

    rc.d script does not start

    Alright, I got it work! When I restarts the jail or reboot the machine, GlassFish runs automatically! glassfish# pwd /usr/local/etc/rc.d glassfish# ls -l total 2 -r-xr-xr-x 1 root wheel 909 Jun 28 18:18 glassfish.sh BUT, I don't understand it. In the other jails - MySQL, PostgreSQL...
  11. I

    rc.d script does not start

    I don't understand this. You mean, for the case of starting up GlassFish, I have to change the name of the script asadmin to asadmin.sh? Further, I've checked other start scripts in other jails (under /usr/local/etc/rc.d) and they all do not contain any ".sh" suffix - for example, cherokee...
  12. I

    rc.d script does not start

    I've changed my script to: #!/bin/sh . /etc/rc.subr name="glassfish" rcvar=glassfish_enable start_cmd="glassfish_start" stop_cmd="glassfish_stop" glassfish_user=root glassfish_admin=/usr/local/glassfish/glassfish3/bin/asadmin...
  13. I

    rc.d script does not start

    I'm trying to configure GlassFish to start within a jail. I've written this simple script: #!/bin/sh . /etc/rc.subr name=glassfish rcvar=glassfish_enable start_cmd="${name}_start" stop_cmd="${name}_stop" glassfish_start() { /usr/local/glassfish/glassfish3/bin/asadmin start-domain...
  14. I

    Using JDK 7 (Java with FreeBSD)

    Hi, I tried to to a make install for JDK7 at java/openjdk7, and was thrown with an error saying the license does not permit auto-install, and that I need to download it myself. Then, I use the command pkg_add -r openjdk7. The installation was successful, but I seems that it is quite an old...
  15. I

    How to delay opening of ports (using pf firewall) after OS start up?

    Is this the best way to configure the script: http://osresources.com/content/2/10/en/how-to-execute-a-script-during-boot-up-on-freebsd.html Using the pf command pf -f /etc/pf2.conf ?
  16. I

    How to delay opening of ports (using pf firewall) after OS start up?

    I have a server with multiple jails configured to start automatically at bootup. The thing is I'd like to wait for all the jails to have started to allow any traffic in via the ports. This means I'd like the machine to have all ports closed, wait for all jails/services to start up, then open the...
  17. I

    WordPress & Joomla does not work with nginx and PHP

    Just to add an additonal note: I think the fastcgi or PHP is misconfigured or an extension is missing. It cannot be anything else. Does anyone know?
  18. I

    WordPress & Joomla does not work with nginx and PHP

    I have been trying to configure WordPress and Joomla to work with FreeBSD 9.0 inside a jail. I got the following problems: * WordPress WordPress (the initial setup page) won't load at all. It takes a long time and nginx finally gives out time out error. Error logged in nginx: 2012/06/08...
  19. I

    Is it possible to set different times for different jails?

    Can I set a different date/time within a jail? For example, I would like to set UTC in one particular jail, while for the global zone and other zone would be set to the local time. Is it possible to set different times for different jails?
  20. I

    PowerDNS slave server not working

    I put in slave=yes and then I got this error in the log: Communicator thread died because of STL error: I did some research and seems like PowerDNS needs IPv6 to be enabled. Anyway, thanks for your help, but I think for now I'll just point 2 IP addresses to the same master server. In future...
Back
Top