su - oracle
svrmgrl
----------------
> connect internal;
> startup;
> select * from props$ where name='NLS_CHARACTERSET';
여기서 보면 value$ 값이 어떻게 되어 있을지는 모르겠는데,,
그걸,, value$='KO16KSC5601' 로 바꿔주세요,,,
> update props$ set value$='KO16KSC5601' where name='NLS_CHARACTERSE
T';
> commit;
> shutdown immediate;
----------------
이렇게 먼저 저걸 바꿔준 다음에,,
oracle 계정의 환경 변수를 변경해주세요,,,
export NLS_LANG='KOREAN_KOREA.KO16KSC5601'
요렇게 해주고요~~~
다쉬~~~~
svrmgrl
----------------
> connect internal;
> startup;
> quit;
----------------
lsnrctl start
su -
export NLS_LANG='KOREAN_KOREA.KO16KSC5601'
cd /usr/local/apache/bin
./apachectl start
모 이런식으로 하면 됩니다.
아무래도,, 조오기,, value$ 값이 클라이언트 측의 LANG 을 결정하고,
환경변수는,, oracle 계정의 메시지를 한글로 표현을 해주더군요,,
한글은 이걸로 OK!!
|