일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Jupyter Notebook
- centos
- appium server
- insert
- rethinkdb
- Materials
- ssh
- Jupyter
- 실행권한
- create table
- kitura
- postgres
- 28015
- port forwarding
- nohup
- STF
- ubuntu
- openpyxl
- appium
- postgresql
- ftp
- mysql
- SWIFT
- nGrinder
- nmap
- GoCD
- sshpass
- STF_PortForwarding
- perfect
- PYTHON
- Today
- Total
목록Linux/CentOS (7)
don't stop believing
예제로 작성한 go server를 centos에서 실행하려고 합니다.CentOS에 설치부터 해야겠네요. 언제나 그렇듯이 CentOS 버전부터 확인하고 갑니다. $ cat /etc/os-release NAME="CentOS Linux" VERSION="7 (Core)" ID="centos" ID_LIKE="rhel fedora" VERSION_ID="7" PRETTY_NAME="CentOS Linux 7 (Core)" ANSI_COLOR="0;31" CPE_NAME="cpe:/o:centos:centos:7" HOME_URL="https://www.centos.org/" BUG_REPORT_URL="https://bugs.centos.org/" CENTOS_MANTISBT_PROJECT="CentOS-7"..
CentOS를 설치하고 터미널을 이용해 사용하다 GUI 툴을 볼 일이 있었습니다.Ubuntu의 경우 설치하면 GUI 툴이 기본으로 실행되지만 CentOS는 터미널이 기본인 것 같습니다.CentOS에 GUI를 설치해 보겠습니다. CentOS를 설치하면 기본 까만 터미널이 보입니다.버전부터 확인하고 가겠습니다. $ cat /etc/os-release NAME="CentOS Linux" VERSION="7 (Core)" ID="centos" ID_LIKE="rhel fedora" VERSION_ID="7" PRETTY_NAME="CentOS Linux 7 (Core)" ANSI_COLOR="0;31" CPE_NAME="cpe:/o:centos:centos:7" HOME_URL="https://www.cento..
CentOS7을 설치하고 한참 사용하다 보니 날짜가 다른걸 이제야 확인했습니다.mysql을 돌리고 있는 서버인데 now() 함수가 이상하게 나오더라구요. CentOS의 TimeZone을 변경해 보겠습니다. 먼저 버전부터 확인해 봐야죠. $ lsb_release -d Description:CentOS Linux release 7.5.1804 (Core) CentOS 7.5.1804 네요.만약 lsb_release -d 명령이 안된다면 아래와 같이 redhat-lsb 패키지를 설치해 주면 됩니다.sudo yum install redhat-lsb timedatectl 명령으로 현재 TimeZone을 확인해 봅니다. $ timedatectl Local time: 금 2018-11-30 04:27:10 EST U..
CentOS를 설치하고 sudo yum ~~ 으로 패키지를 설치하려니 아래와 같은 메시지가 나옵니다. $ sudo yum install -y https://centos7.iuscommunity.org/ius-release.rpm [sudo] ngle의 암호: ngle은(는) sudoers 설정 파일에 없습니다. 이 시도를 보고합니다. 간단하게 sudoer에 추가하도록 하겠습니다.먼저 root 계정으로 변경합니다. $ su sudoer로 추가하려는 계정을 wheel 그룹에 추가합니다. # usermod -aG wheel ngle sudoers 파일을 열고 wheel 그룹이 모든 명령을 사용할 수 있도록 되어 있는지 확인합니다. # vi /etc/sudoers /etc/sudoers 파일을 열고 아래 설정을..
오랜만에 CentOS를 설치했습니다.설치 후 yum update 가 안먹어서 해결방법을 찾았고 기록하기 위해 post 합니다. 위 화면과 같이 root 계정으로 로그인 후 yum update를 하면 에러가 나오고 있습니다. 14: curl#6 - "Could not resolve host: mirrorlist.centos.org: Unknown error" 인터넷 연결이 정상적이지 않을 때 발생하는 에러입니다.먼저 ip addr 명령으로 이더넷 정보를 확인합니다. dhcp에서 ip를 받아오지 못하고 있습니다.이더넷 카드 이름이 enp4s0라는 것을 기억합니다. 아래 경로에서 enp4s0의 설정 파일을 엽니다.CentOS에서는 ifcfg- 형식의 파일이 존재하며 이더넷 카드의 설정등이 저장되어 있습니다. ..
리눅스 시스템을 확인하는데 간혹 dmidecode를 사용할 경우가 있다. CentOS에서는 yum으로 설치할 수 있다. $ sudo yum install dmidecode Dmidecode, or Desktop Management Interface, is a very useful tool for finding out details of the system hardware on your Centos 6 or RHEL box. Dmidecode outputs information about your hardware as recorded in the BIOS. You can also obtain the information about maximum supported system configuration. Th..
간혹 부하 테스트를 할때 부하를 발생하는 Agent 서버의 CPU Core를 확인해야 할 때까 있다.CentOS에서 CPU Core 확인하는 명령어를 알아봅시다. dmidecode를 사용할 수 있으며 아래에서 설치명령을 확인할 수 있다.[CentOS dmidecode 설치] CPU 코어 전체 개수 확인 $ grep -c processor /proc/cpuinfo 4 물리 CPU 개수 확인 $ grep ^processor /proc/cpuinfo | wc -l 4 $ sudo dmidecode -t processor | grep 'Socket Designation' Socket Designation: CPU 1 Socket Designation: CPU 2 Socket Designation: CPU 3 S..