Server-Side/Linux2010. 12. 18. 16:47
1. add Dag RPM Repository
# vi /etc/yum.repos.d/Dag.repo
-----------------------------------
[dag]
name=Dag RPM Repository for Red Hat Enterprise Linux
baseurl=http://apt.sw.be/redhat/el$releasever/en/$basearch/dag
gpgcheck=0
enabled=1
protect=0
-----------------------------------
2. install rrdtool
# yum install rrdtool
Posted by 준피
Server-Side/Linux2010. 12. 1. 17:01

Mysql을 설치하고 데몬을 실행하려고 하는데 다음과 같은 에러가 뜬다면 이렇게 해보세요~

# /usr/local/mysql/bin/mysqladmin --version


ERROR 2002: Can't connect to local MySQL server through

socket '/tmp/mysql.sock' (2)  


# chown -R root /usr/local/mysql
# chown -R mysql /usr/local/mysql/var
# chgrp -R mysql /usr/local/mysql/


참고사항
# /usr/local/mysql/bin/mysqld_safe --user=mysql&
 
...
... mysql ended   <- 데몬 실행이 안된겁니다.
...

참고사이트 : http://mkluv.tistory.com/113
Posted by 준피
Server-Side/Linux2010. 12. 1. 13:09
# mount -rw -t ext3 /dev/sda /home

-rw : 해당 드라이브에 read, write 가능하다.
-t ext3 : 해당 드라이브의 파일 시스템이 ext3이다.
/dev/sda/ : 마운트할 드라이브 공간
/home : 실제로 할당할 디렉토리

# mount -v

/dev/sda on /home type ext3 (rw)

라고 나오면 정상임
Posted by 준피
Server-Side/Linux2010. 11. 22. 10:35
1. 메모리 사용량 체크

# ps -u root -o rss,command | grep 'memcached -d'  | awk '{print $0}{sum+=$1} END {print "\nMemory usage for memcached:", sum/1024, "MB\n"}'

2. stats 확인

# nc localhost 11211
stats

STAT cmd_get 1169958
STAT cmd_set 260621
STAT get_hits 823504
STAT get_missed 346454

※ hitrate : get_hits / cmd_get
 


Posted by 준피
Server-Side/Linux2010. 10. 15. 15:46
php 에서 mysqli extension을 잘 쓰고 있다가 mysql을 쓸 일이 생겨서 작업을 하다가

call to undefined function mysql_connect

이런 에러를 발견했다.

php와 mysql 사이의 연동이 안된거 같아서 검색해보니

# yum install php-mysql

이거 한방에 해결했다.

'Server-Side > Linux' 카테고리의 다른 글

linux mount  (0) 2010.12.01
how to check memory usage of memcached  (0) 2010.11.22
[CentOS] how to install memcached in 64bit centos  (0) 2010.10.11
[CentOS] php에서 memcache 설치하기  (0) 2010.10.11
[CentOS] php version update 5.1 to 5.2  (0) 2010.10.09
Posted by 준피