I changed the Makefile for random file creation step (as a fix for my earlier posted error)... This is what I found at Makefile : random: @if [ -e /dev/urandom ] ; then \ dd if=/dev/urandom of=./random count=10 >/dev/null 2>&1; \ else \ date > ./random; \ fi I Changed to ... random date > ./random; That solved my earlier problem, and now my server is listening. Thanks, Rafi On 8/7/08, Rafiqul Ahsan <rafiqul.ahsan@gmail.com> wrote:
I see below error when I execute bootstrap
bash-3.00# /usr/local/etc/raddb/certs/bootstrap ............................................... make: Nothing to be done for `ca'. make: Nothing to be done for `server'. make: `dh' is up to date. /bin/sh: test: argument expected make: *** [random] Error 1
On 8/7/08, Alan DeKok <aland@deployingradius.com> wrote:
Rafiqul Ahsan wrote:
Thanks, I was able to build freeradius 2.0.5 on Solaris 10. However, server is not running, and I see below error when I run "radiusd -X". Here is the output. ... make_cert_command = "/usr/local/etc/raddb/certs/bootstrap" } Exec-Program output:
It's trying to run the bootstrap command. It's not working.
Run the bootstrap command by hand, and then re-start the server.
Alan DeKok. - List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
-- Rafiqul Ahsan
-- Rafiqul Ahsan