일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- css
- 애플
- kmip
- otpkey
- 앱리소스
- 2FA
- SSH
- fido
- OTP
- 인증
- SWIFT
- Android
- MYSQL
- MFA
- 앱스토어
- 안드로이드
- apple
- OSX
- Xcode
- albumbook
- SwiftUI
- WebAuthn
- MSYS2
- appres
- SSL
- openssl
- FIDO2
- git
- 앨범북
- Nodejs
- Today
- Total
인디노트
OS X 서비스 등록 (Openvpn) 본문
서비스 설정파일
cat /Library/LaunchDaemons/homebrew.mxcl.openvpn.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd";>
<plist version="1.0">
<dict>
<key>Label</key>
<string>homebrew.mxcl.openvpn</string>
<key>ProgramArguments</key>
<array>
<string>/usr/local/opt/openvpn/sbin/openvpn</string>
<string>--config</string>
<string>/usr/local/etc/openvpn/server.conf</string>
</array>
<key>OnDemand</key>
<false/>
<key>RunAtLoad</key>
<true/>
<key>TimeOut</key>
<integer>90</integer>
<key>WatchPaths</key>
<array>
<string>/usr/local/etc/openvpn</string>
</array>
<key>WorkingDirectory</key>
<string>/usr/local/etc/openvpn</string>
</dict>
</plist>
서비스 등록
launchctl load ~/Library/LaunchDaemons/homebrew.mxcl.openvpn.plist
서비스 시작
launchctl start homebrew.mxcl.openvpn
서비스 재시작
launchctl restart homebrew.mxcl.openvpn
서비스 중지
launchctl stop homebrew.mxcl.openvpn
'개발 플랫폼 및 언어' 카테고리의 다른 글
Fusion 10 on High Sierra - Guests Do Not Start - Host Does Not Support Virtualizing Real Mode (0) | 2018.05.20 |
---|---|
Installing rEFIt (0) | 2018.05.20 |
OS-X openvpn server 설치 (0) | 2018.05.18 |
Virtualbox 네트워크 종류와 설정 방법 (0) | 2018.05.18 |
eclipse server.xml SSL 인증서 설정 및 클라이언트 인증 방법 (0) | 2018.05.11 |