목요일, 10월 16, 2014

레드헷 리눅스 업데이트하기



Red Hat Network(RHN)에 등록하지 않은 시스템 업데이트하기

"yum" 패키지 인스톨러를 구동했을 때 다음과 같은 메시지가 보인다면 RHN에 등록하지 않은것이다.

[root@localhost ~]# yum update

Loaded plugins: rhnplugin, security

This system is not registered with RHN.

RHN support will be disabled.

http://ftp.daum.net/centos/5Server/addons/x86_64/repodata/repomd.xml: [Errno 14] HTTP Error 404: Not Found

Trying other mirror.

Error: Cannot retrieve repository metadata (repomd.xml) for repository: addons. Please verify its path and try again

이럴경우 /etc/yum.repos.d 에 centos.repo 파일을 생성한다.

[root@localhost ~]# cd /etc/yum.repos.d
[root@localhost ~]# vi centos.repo

[centos]
name=CentOS $releasever - $basearch
baseurl=http://ftp.kaist.ac.kr/CentOS/6.5/os/$basearch/
enabled=1
gpgcheck=0

위의 6.5는 설치된 레드헷 리눅스 버전을 참고해서 업데이트할 버전을 입력한다.


금요일, 8월 29, 2014

How to show real time mysql query status

mysql> SHOW VARIABLES LIKE "general_log%";

+------------------+----------------------------+
| Variable_name    | Value                      |
+------------------+----------------------------+
| general_log      | OFF                        |
| general_log_file | /var/run/mysqld/mysqld.log |
+------------------+----------------------------+

mysql> SET GLOBAL general_log = 'ON';

목요일, 7월 31, 2014

Suppress "NLS unused message:"

org.eclipse.osgi.util.NLS.java 를 확장한 메시지 클래스에

정의한 메지지와 .properties 파일의 내용이 맞지 않을 경우 "NLS unused message:"  메시지가 출력되는 문제 해결 방법

Run Configurations

 VM arguments: 에 -Dosgi.nls.warnings=ignore 를 추가하고, 어플리케이션을 실행한다.