$ ps -ef | grep [service name]
root 789 1 0 Jun16 ? 00:05:46 /usr/bin/python -Es /usr/sbin/tuned -l -P
root 5078 10056 0 22:24 pts/0 00:00:00 grep --color=auto python
root 6629 6628 0 Jun21 ? 01:01:29 python3.4 /root/xxx-server/XxxServer.py production
root 27645 1 0 18:43 ? 00:00:00 /bin/sh /root/xxx-app-server-python/start.sh production
root 27647 27645 1 18:43 ? 00:04:09 python3.4 /root/xxx-app-server-python/XxxAppServer.py production
여기서 나온 process 번호를 proc 폴더에서 검색 후 fd 폴더에서 개수 확인
$ cd /proc/[process no]/fd
$ ls -l | wc -l
91


반응형

리눅스에서 사용중인 포트 목록 확인

netstat -atlpvn
[root@tez ~]# netstat -atlpvn
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 127.0.0.1:199 0.0.0.0:* LISTEN 980/snmpd
tcp 0 0 0.0.0.0:6379 0.0.0.0:* LISTEN 916/redis-server *
...
반응형

Install MySQL

mysql 설치, 서비스 등록

  • CentOS7 부터는 데이터베이스가 Mariadb로 변경되어서 MySQL을 바로 yum으로 설치가 불가능기 때문에 mysql을 yum에 등록 후 설치해준다
#yum mysql
$ yum -y install http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm
# mysql
$ yum -y install mysql-community-server
# mysql
$ systemctl start mysqld
# ( )
$ systemctl enable mysqld

Change password

최초 설치시에만 된다.
$ mysql_secure_installation #
$ /usr/bin/mysqladmin -u root password '[ ]'
sudo grep 'temporary password' /var/log/mysqld.log
$ sudo mysql_secure_installation

Set Characterset

mysql의 기본 설정값이 latin1 로 되어 있어서 utf8 로 바꿔주자. 바꾸지 않으면 한글깨짐등 문제가 생길 수 있다.
  • Characterset 변경 (/etc/my.cnf 파일)
$ vi /etc/my.cnf
[mysqld]
#
character-set-server=utf8
collation-server=utf8_bin
#...

mysql 재시작

$ systemctl restart mysqld


반응형

'Programming > Linux' 카테고리의 다른 글

[SSH] PW없이 로그인  (0) 2016.09.26
[Service] Service list  (0) 2016.09.26
[Semanage] ssh 특정 포트 접근 제어  (0) 2016.09.26
[Process] 특정 프로세스가 사용하는 개수 확인  (0) 2016.09.26
[Port] Check port list in linux  (0) 2016.09.26
[Log] Apache log format  (0) 2016.09.25
[Java] Install Java (JDK/JRE) on CentOS/RHEL  (0) 2016.09.25
[Hostname] Change hostname  (0) 2016.09.25
[Data] Date command  (0) 2016.09.25
Check Linux OS type, Version  (0) 2016.09.25