NTLite를 사용하여 업데이트로 Windows 사용자 지정 ISO를 만드는 방법
NTLite를 사용하여 Vultr 시스템과 호환되는 Windows 사용자 지정 ISO를 만드는 방법을 단계별로 설명합니다. 최신 드라이버와 업데이트 통합을 포함한 완벽 가이드.
Sentry는 오류 추적을위한 오픈 소스 솔루션입니다. Sentry는 전통적으로 로그 파일에 기록되는 응용 프로그램의 예외 및 기타 유용한 메시지를 추적하고 대신 사용자 친화적 인 인터페이스를 사용합니다.
Sentry를 실행하기 위해 필요한 몇 가지 기본 전제 조건 :
먼저 시스템을 업데이트하십시오.
sudo apt-get update
소프트웨어를 실행할 센트리 사용자를 작성하십시오.
sudo adduser sentry
sudo adduser sentry sudo
설치 python및 build-essential패키지 :
sudo apt-get install -y python build-essential
파일을 작성하십시오 /etc/apt/sources.list.d/pgdg.list.
sudo touch /etc/apt/sources.list.d/pgdg.list
서명 키를 가져오고 패키지 목록을 업데이트하십시오.
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo apt-get update
PostgreSQL 설치 :
sudo apt-get install postgresql-9.5
최신 Redis 4.x 소스를 다운로드하십시오.
wget http://download.redis.io/releases/redis-4.0.1.tar.gz
Redis 소스를 자체 폴더에 압축 해제하여 cd다음 단계에서 빌드하고 빌드하십시오.
tar -xvf redis-4.0.1.tar.gz
소스에서 빌드하십시오.
cd redis-4.0.1
make
백그라운드에서 Redis를 실행하십시오.
src/redis-server --daemonize yes
설치 pip및 관련 라이브러리 :
cd ~
sudo apt-get install python-setuptools python-dev libxslt1-dev gcc libffi-dev libjpeg-dev libxml2-dev libxslt-dev libyaml-dev libpq-dev python-pip
Python 가상 환경을 설치하십시오.
sudo pip install -U virtualenv
설치 postgresql-contrib:
sudo apt-get install postgresql-contrib-9.5
postgres사용자 로 로그인 하고 citext확장을 활성화하십시오 .
sudo su - postgres
$ psql -d template1 -U postgres
psql (9.5.12)
Type "help" for help.
template1=# create extension citext;
CREATE EXTENSION
template1=# \q
sentry데이터베이스를 작성하십시오 .
$ createdb sentry_db
$ createuser sentry --pwprompt
$ psql -d template1 -U postgres
template1=# GRANT ALL PRIVILEGES ON DATABASE sentry_db to sentry;
GRANT
template1=# ALTER USER sentry WITH SUPERUSER;
ALTER ROLE
template1=# \q
exit
sentry사용자 로 로그인하고 Sentry를위한 가상 환경을 작성하십시오.
sudo su - sentry
virtualenv ~/sentry_app/
source ~/sentry_app/bin/activate
머신에 Sentry를 설치하십시오 :
pip install -U sentry
센트리 초기화 :
sentry init
이 명령은 디렉토리에 구성 파일을 작성합니다 ~/.sentry/.
구성 파일을여십시오 ~/.sentry/sentry.conf.py.
nano ~/.sentry/sentry.conf.py
그런 다음 데이터베이스 신임 정보를 추가하십시오. 다음 예제와 같아야합니다.
DATABASES = {
'default': {
'ENGINE': 'sentry.db.postgres',
'NAME': 'sentry_db',
'USER': 'sentry',
'PASSWORD': 'securedpassword',
'HOST': 'localhost',
'PORT': '5432',
'AUTOCOMMIT': True,
'ATOMIC_REQUESTS': False,
}
}
데이터베이스를 초기화하십시오.
sentry upgrade
sentry사용자를 로그 아웃하십시오 .
exit
감독자 설치 :
sudo apt-get install -y supervisor
서버를 사용하여 부팅 할 때마다 Sentry 서버가 시작되도록 구성하십시오 supervisord. 파일에 다음 구성을 넣으십시오 /etc/supervisor/conf.d/sentry.conf.
[program:sentry-web]
directory=/home/sentry/sentry_app/
environment=SENTRY_CONF="/home/sentry/.sentry"
command=/home/sentry/sentry_app/bin/sentry run web
autostart=true
autorestart=true
redirect_stderr=true
user=sentry
stdout_logfile=syslog
stderr_logfile=syslog
[program:sentry-worker]
directory=/home/sentry/sentry_app/
environment=SENTRY_CONF="/home/sentry/.sentry"
command=/home/sentry/sentry_app/bin/sentry run worker
autostart=true
autorestart=true
redirect_stderr=true
user=sentry
stdout_logfile=syslog
stderr_logfile=syslog
[program:sentry-cron]
directory=/home/sentry/sentry_app/
environment=SENTRY_CONF="/home/sentry/.sentry"
command=/home/sentry/sentry_app/bin/sentry run cron
autostart=true
autorestart=true
redirect_stderr=true
stdout_logfile=syslog
stderr_logfile=syslog
파일을 저장하고 관리자를 다시로드하십시오.
sudo supervisorctl reread
sudo supervisorctl update
sudo supervisorctl start all
이제 센트리가 구성되고 포트에서 수신 대기합니다 9000. http://you_server_ip:9000Sentry 설정을 마치려면 즐겨 찾는 브라우저로 이동 하십시오.
NTLite를 사용하여 Vultr 시스템과 호환되는 Windows 사용자 지정 ISO를 만드는 방법을 단계별로 설명합니다. 최신 드라이버와 업데이트 통합을 포함한 완벽 가이드.
Vultr BGP 설정을 위한 단계별 튜토리얼. ASN 할당부터 IP 라우팅 구성, BIRD 데몬 설정, FreeBSD 특이사항 및 실전 문제 해결 팁 7가지 포함한 최종 가이드
WebDAV (Web Distributed Authoring and Versioning)를 이용한 원격 파일 작성을 위한 프레임워크로, WsgiDAV 설치 및 구성 방법을 안내합니다.
Mailcow는 DoveCot, Postfix 및 기타 여러 오픈 소스 패키지를 기반으로 하는 경량 메일 서버입니다. 데비안에서 Mailcow 설치 방법을 안내합니다.
랜섬웨어 공격이 증가하고 있지만 AI가 최신 컴퓨터 바이러스를 처리하는 데 도움이 될 수 있습니까? AI가 답인가? AI boone 또는 bane인지 여기에서 읽으십시오.
오픈 소스이자 무료 운영 체제인 ReactOS가 최신 버전과 함께 제공됩니다. 현대 Windows 사용자의 요구 사항을 충족하고 Microsoft를 무너뜨릴 수 있습니까? 이 구식이지만 더 새로운 OS 환경에 대해 자세히 알아보겠습니다.
Whatsapp은 마침내 Mac 및 Windows 사용자용 데스크톱 앱을 출시했습니다. 이제 Windows 또는 Mac에서 Whatsapp에 쉽게 액세스할 수 있습니다. Windows 8 이상 및 Mac OS 10.9 이상에서 사용 가능
인공 지능이 소규모 회사에서 어떻게 인기를 얻고 있으며 어떻게 인공 지능이 성장할 가능성을 높이고 경쟁자가 우위를 점할 수 있는지 알아보려면 이 기사를 읽으십시오.
최근 Apple은 문제를 해결하기 위해 macOS Catalina 10.15.4 추가 업데이트를 출시했지만 이 업데이트로 인해 Mac 컴퓨터의 브릭킹으로 이어지는 더 많은 문제가 발생하는 것 같습니다. 자세히 알아보려면 이 기사를 읽어보세요.
빅데이터의 13가지 상용 데이터 추출 도구