참고 : NAGS 게임 라이브러리가있는 MUD 서버를 찾고 있었고 이것을 발견했습니다 nags-php-mud. 다른 것을 사용하는 경우 내 대답은 관련이 없습니다.
는 config.php다음과 같은 설정이 있었다 :
<?
/*Modify the setting here to set up your game server */
$configarray = array(
'DB_HOST' => 'localhost',
'DB_USERNAME' => 'nags',
'DB_PASSWORD' => 'password',
'DB_DATABASE' => 'nags',
'IP_ADDRESS' => '0.0.0.0',
'SERVER_PORT' => '4000',
'SERVER_NAME' => 'NAGS GAMING SYSTEM',
);?>
포트 번호는 4000입니다. IP 주소를 업데이트 127.0.0.1한 다음 텔넷을 사용하여 포트 4000에 연결해 보십시오 .telnet 127.0.0.1 4000
업데이트
위의 명령에서, 당신은telnet localhost하지telnet localhost 4000.
나는 그것을 시도했지만 문제가 발생합니다. 다음이 표시되고 추적 할 수 없습니다.
PHP Notice: Undefined index: quiet in /home/blvdeer/Downloads/nags-php-mud-master/nags.php on line 34
PHP Notice: Undefined index: q in /home/blvdeer/Downloads/nags-php-mud-master/nags.php on line 34
PHP Notice: Undefined index: deamon in /home/blvdeer/Downloads/nags-php-mud-master/nags.php on line 38
PHP Notice: Undefined index: d in /home/blvdeer/Downloads/nags-php-mud-master/nags.php on line 38
PHP Notice: Undefined property: MAIN::$MESSAGE in /home/blvdeer/Downloads/nags-php-mud-master/modules/main.php on line 158
SYSTEM: (LOAD MODULE) MESSAGE
SYSTEM: (LOAD MODULE) CONFIGURE
SYSTEM: (LOAD MODULE) DATABASE
telnetd데몬은 일반적으로 정상적으로 작동하지만 정상적인 로그인을 제공합니다. MUD 서버 자체가 포트 23에서 수신 대기하는 것 같아서 문제가 구성에있을 수 있습니다.telnet클라이언트에서 수행하는 작업과 아무 관련이 없습니다 . 또는 네이티브 Ubuntu와 함께 MUD 서버를 사용하려는 경우이를 위해telnetd어떤 구성을 사용했는지 알려주십시오.