리눅스 썸네일형 리스트형 GitLab에서 리포지토리 미러링을 구성하는 방법(gitlab -> github 미러링) GitLab에서 리포지토리 미러링을 구성하는 방법(gitlab -> github 미러링) github 리포지토리 생성 및 tokens 생성 repository 생성 repository name : gitlab_mirror tokens 생성 Settings > Developer settings > Personal access tokens gitlab 프로젝트 생성 및 미러링 설정 프로젝트 생성 프로젝트 그룹 : testG 프로젝트 이름 : gitlab_source 미러링 설정 testG > gitlab_source > 저장소 설정 Git 저장소 URL : https://아이디@github.com/아이디/gitlab_morror.git 미러 방향 : Push 인증 방법 : 패스워드 패스워드 : 2691109.. 더보기 [리눅스] zabbix agent install zabbix 아이템 수집 Active 방식 사전조건으로 에이전트 설정 파일에서 ServerActive의 IP를 지정해주어야 그 IP를 참조해서 데이터를 전송할 수 있다. Agent > Server로 데이터를 전송하는 방식(TCP 10051 포트를 이용) Item 구성 시 Zabbix Agent(active)를 선택하면 Active 방식으로 사용 가능 Passive 방식(Default) 별다른 설정없이 기본 동작 방식 Server > Agent로 데이터를 수집하는 방식(TCP 1005포트를 이용) Item 구성 시 Zabbix Agent를 선택하여 구성 출처: https://hakurei.tistory.com/271[Reimu's Development Blog] zabbix agent install #!/.. 더보기 mytop을 사용하여 MySQL 데이터베이스 서버의 성능을 모니터링하는 방법 mytop을 사용하여 MySQL 데이터베이스 서버의 성능을 모니터링하는 방법 MySQL mytop은 MySQL 데이터베이스 서버의 성능을 모니터링하는 데 사용할 수 있는 도구입니다. mytop은 실행 중인 쿼리, 연결, CPU 사용량, 메모리 사용량, I/O 사용량 등의 정보를 제공합니다. epel 패키지 설치 yum install -y epel-release mytop 패키지 설치 yum install -y mytop mytop 실행 mytop mytop 인터페이스를 사용합니다. mytop 인터페이스는 다음과 같은 정보를 제공합니다. 실행 중인 쿼리 연결 CPU 사용량 메모리 사용량 I/O 사용량 vim ~/.mytop host=localhost db=zabbix_db #user=zabbix_user .. 더보기 CentOS 7에서 Zabbix(5.0.0)을 소스로부터 컴파일하고 설치하는 방법 CentOS 7에서 Zabbix(5.0.0)을 소스로부터 컴파일하고 설치하는 방법 필수 패키지 설치 yum install gcc libxml2-devel net-snmp-devel \ curl-devel unixODBC-devel OpenIPMI-devel libssh2-devel \ iksemel-devel openldap-devel libevent-devel 자빅스 소스 다운로드 wget https://cdn.zabbix.com/zabbix/sources/stable/5.0/zabbix-5.0.0.tar.gz tar xvfz zabbix-5.0.0.tar.gz 컴파일 및 설치 cd zabbix-5.0.0 ./configure \ --enable-server \ --enable-agent \ --wit.. 더보기 PHP의 bcmath 모듈을 컴파일 설치하는 방법 PHP의 bcmath 모듈을 컴파일 설치하는 방법 PHP의 bcmath 모듈을 추가로 설치하려면 PHP를 다시 컴파일하고 이 모듈을 활성화해야 합니다. cd /usr/local/src/php-7.3.11/ext/bcmath/ /usr/local/php/bin/phpize 컴파일 및 설치 ./configure --with-php-config=/usr/local/php/bin/php-config make PHP의 확장 모듈 디렉토리를 확인 /usr/local/php/bin/php -i | grep ^extension_dir $ /usr/local/php/bin/php -i | grep ^extension_dir extension_dir => /usr/local/php/lib/php/extensions/deb.. 더보기 Apache 2.4 Invalid command 'LanguagePriority' Apache 2.4 Invalid command 'LanguagePriority' 에러 $ /usr/local/apache2/bin/apachectl -t AH00526: Syntax error on line 78 of /usr/local/apache2/conf/extra/httpd-languages.conf: Invalid command 'LanguagePriority', perhaps misspelled or defined by a module not included in the server configuration Invalid command 'LanguagePriority' 오류는 Apache 2.4에서 LanguagePriority 디렉티브를 사용할 때 발생할 수 있습니다. 이 오류는 Apach.. 더보기 MySQL 5.7 이후 버전에서 root 비밀번호를 변경하는 방법 MySQL 5.7 이후 버전에서 root 비밀번호를 변경하는 방법 ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement. MySQL 오류 1820 (HY000)은 사용자 비밀번호를 재설정하지 않고는 특정 작업을 수행할 수 없을 때 발생하는 오류입니다. 이 오류를 해결하려면 사용자 비밀번호를 변경해야 합니다. 이를 위해 ALTER USER 문을 사용할 수 있습니다. MySQL에서 사용자 비밀번호를 재설정하는 방법 MySQL에 root 권한으로 로그인합니다. 이것은 root 사용자만이 MySQL 서버의 설정을 변경할 수 있는 권한을 가지고 있습니다. mysql -u ro.. 더보기 killall 명령어 killall 명령어killall 명령어는 지정된 프로세스 이름과 일치하는 모든 프로세스를 종료하는 데 사용됩니다.$ killall-bash: killall: command not foundpsmisc 패키지 설치RHEL 계열yum install -y psmiscDebian 계열apt-get install -y psmisckillall 명령어 버전 정보killall -V$ killall -Vkillall (PSmisc) 23.4Copyright (C) 1993-2021 Werner Almesberger and Craig SmallPSmisc comes with ABSOLUTELY NO WARRANTY.This is free software, and you are welcome to redistribute.. 더보기 이전 1 ··· 110 111 112 113 114 115 116 ··· 164 다음