Ошибка: Неверный адрес условия (ошибка № 14), не удается запустить Huntentoot на Clozure CL
Я пытаюсь запустить hunchentoot на IBM power6, и на этой платформе доступен только clzure cl. Я попробовал это:
1.lisp
(hunchentoot:start (make-instance 'hunchentoot:easy-acceptor :port 80))
(hunchentoot:define-easy-handler (say-yo :uri "/yo") (name)
(setf (hunchentoot:content-type*) "text/plain")
(format nil "Hey~@[ ~A~]!" name))
затем я загрузил его в ccl:
(T482:lisp/ccl/201907271334) # ./ccl/ppccl64 -I 0.img -l 1.lisp
> Error: The condition Bad address (error #14) during socket creation operation in bind occurred with errno: 0.
> While executing: USOCKET::RAISE-ERROR-FROM-ID, in process listener(1).
> Type :GO to continue, :POP to abort, :R for a list of available restarts.
> If continued: Skip loading "1.lisp"
> Type :? for other options.
1 >
И я понятия не имею, как это исправить.