Advertisement
Guest User

Untitled

a guest
Nov 28th, 2012
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. ***** SERVER RESTARTED *****
  2.  
  3.  
  4. Wed Nov 28 18:40:58 [initandlisten] MongoDB starting : pid=21461 port=27017 dbpath=/var/lib/mongon 64-bit host=ip-10
  5. Wed Nov 28 18:40:58 [initandlisten] db version v2.0.8, pdfile version 4.5
  6. Wed Nov 28 18:40:58 [initandlisten] git version: a340a57af7cdda865da420704e1d1b2fac0cedc2
  7. Wed Nov 28 18:40:58 [initandlisten] build info: Linux 2.6.21.7-2.ec2.v1.2.fc8xen #1 SMP Fri Nov 20 17:48:28 EST 2009 x86_64 BOOST_LIB_VERSION=1_41
  8. Wed Nov 28 18:40:58 [initandlisten] options: { config: "/etc/mongod.conf", cpu: "true", dbpath: "/var/lib/mongon", diaglog: 3, fork: "true", logappend: "true", logpath: "/var/log/mongo/mongod.log", quiet: "true" }
  9. Wed Nov 28 18:40:58 [initandlisten] diagLogging = 3
  10. Wed Nov 28 18:40:58 [initandlisten] journal dir=/var/lib/mongon/journal
  11. Wed Nov 28 18:40:58 [initandlisten] recover : no journal files present, no recovery needed
  12. Wed Nov 28 18:40:58 [websvr] admin web console waiting for connections on port 28017
  13. Wed Nov 28 18:40:58 [initandlisten] waiting for connections on port 27017
  14. Wed Nov 28 18:41:02 [snapshotthread] cpu: elapsed:4000 writelock: 0%
  15. Wed Nov 28 18:41:06 [snapshotthread] cpu: elapsed:4000 writelock: 0%
  16. Wed Nov 28 18:41:10 [snapshotthread] cpu: elapsed:4000 writelock: 0%
  17. Wed Nov 28 18:41:14 [snapshotthread] cpu: elapsed:4000 writelock: 0%
  18.  
  19.  
  20. cat /etc/mongod.conf
  21. # mongo.conf
  22.  
  23. #where to log
  24. logpath=/var/log/mongo/mongod.log
  25.  
  26. logappend=true
  27.  
  28. quiet=true
  29. # fork and run in background
  30. fork = true
  31.  
  32. #port = 27017
  33.  
  34. dbpath=/var/lib/mongon
  35.  
  36. # Disables write-ahead journaling
  37. # nojournal = true
  38.  
  39. # Enables periodic logging of CPU utilization and I/O wait
  40. cpu = true
  41.  
  42. # Turn on/off security. Off is currently the default
  43. #noauth = true
  44. #auth = true
  45.  
  46. # Verbose logging output.
  47. #verbose = true
  48.  
  49. # Inspect all client data for validity on receipt (useful for
  50. # developing drivers)
  51. #objcheck = true
  52.  
  53. # Enable db quota management
  54. #quota = true
  55.  
  56. # Set oplogging level where n is
  57. # 0=off (default)
  58. # 1=W
  59. # 2=R
  60. # 3=both
  61. # 7=W+some reads
  62. diaglog = 3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement