redis sentinel怎么跑守護進程以及日志記錄位置的?
問題描述
redis sentinel怎么跑守護進程的?直接在前臺顯示了.redis-server可以通過修改配置文件來使用守護進程,以及指定日志目錄,但sentinel啟動只能在前臺跑。。。
怎樣修改配置也讓sentinel跑守護進程
[root@redis_01 redis]# redis-server /etc/redis/sentinel.conf --sentinel7980:X 23 Nov 18:02:41.348 * Increased maximum number of open files to 10032 (it was originally set to 1024)._._ _.-``__ ’’-._ _.-`` `. `_. ’’-._ Redis 3.0.5 (00000000/0) 64 bit .-`` .-". "/ _.,_ ’’-._ ( ’ , .-` | `, ) Running in sentinel mode |`-._`-...-` __...-.``-._|’` _.-’| Port: 26379 | `-._ `._ / _.-’ | PID: 7980 `-._ `-._ `-./ _.-’ _.-’ |`-._`-._ `-.__.-’ _.-’_.-’| | `-._`-.__.-’_.-’ | http://redis.io `-._ `-._`-.__.-’_.-’ _.-’ |`-._`-._ `-.__.-’ _.-’_.-’| | `-._`-.__.-’_.-’ | `-._ `-._`-.__.-’_.-’ _.-’ `-._ `-.__.-’ _.-’ `-.__.-’ `-.__.-’ 7980:X 23 Nov 18:02:41.355 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128.7980:X 23 Nov 18:02:41.355 # Sentinel runid is 43de323d55627d896b2caf1da2e305f0eb59dcee7980:X 23 Nov 18:02:41.356 # +monitor master mymaster 127.0.0.1 6379 quorum 1^C7980:signal-handler (1448273325) Received SIGINT scheduling shutdown...7980:X 23 Nov 18:08:45.618 # User requested shutdown...7980:X 23 Nov 18:08:45.618 # Sentinel is now ready to exit, bye bye...
問題解答
回答1:我去, 鏈接里的方法雖然行, 但是沒必要。你把daemonize yes這句加到sentinel.conf里面就行了。 再啟動就是守護進程方式了。
回答2:已自行解決了鏈接描述
回答3:1.如上所說,daemonize yes2.在命令后面加上&3.nohup
相關文章:
1. python - Win7調用flup報錯’module’ object has no attribute ’fromfd’2. 網頁爬蟲 - Python 爬蟲中如何處理驗證碼?3. mysql - 分庫分表、分區(qū)、讀寫分離 這些都是用在什么場景下 ,會帶來哪些效率或者其他方面的好處4. Python如何播放還存在StringIO中的MP3?5. javascript - 請教如何獲取百度貼吧新增的兩個加密參數6. mysql 一個sql 返回多個總數7. python - 我在使用pip install -r requirements.txt下載時,為什么部分能下載,部分不能下載8. mysql - 如何減少使用或者不用LEFT JOIN查詢?9. Python爬蟲如何爬取span和span中間的內容并分別存入字典里?10. python - 編碼問題求助
