On Oct 8, 2018, at 11:04 AM, shivu prasad <shivaprasad2452@gmail.com> wrote:
Since You mentioned there may be some configuration change in my set up I download fresh code(freeradius-server-3.0.17.tar.gz) and retried the setup here is steps I am invoking.
1.Configure (./configure --prefix=/usr/local/freeradius-server-3.0.17) 2.make 3. sudo make Install 4. sudo /usr/local/afreeradius/sbin/radiusd -X (I got the SSL error here I fixed it by allowing ssl # allow_vulnerable_openssl = no allow_vulnerable_openssl = 'CVE-2016-6304' ) **this is the only change I have done to fix the SSL issue and to make the server up.
5. make tests (changed directory to src/tests and run the make tests command).
No. Don't do that. You run "make tests" from the top-level directory: - configure - make - make tests It's that simple. You *don't* need to install it in order to run the tests. Alan DeKok.