Advertisement
logicmoo

Untitled

Sep 12th, 2016
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Prolog 4.33 KB | None | 0 0
  1. sing jquery-rails 2.1.3
  2. Using redis-rails 3.2.3
  3. Using acts-as-taggable-on 2.4.1
  4. Using turbolinks 1.2.0
  5. Using chosen-rails 1.0.0
  6. Using select2-rails 3.4.2
  7. Using jquery-ui-rails 2.0.2
  8. Using jquery-turbolinks 1.0.0
  9. Bundle complete! 95 Gemfile dependencies, 150 gems now installed.
  10. Gems in the groups development, test, mysql, postgres and aws were not installed.
  11. Bundled gems are installed into ./vendor/bundle.
  12. root@ubuntu:/home/git/gitlab# sudo -u git -H bundle exec rake gitlab:env:info RAILS_ENV=production
  13.  
  14. System information
  15. System:         Ubuntu 16.04
  16. Current User:   git
  17. Using RVM:      no
  18. Ruby Version:   2.0.0p247
  19. Gem Version:    2.0.3
  20. Bundler Version:1.12.5
  21. Rake Version:   10.1.0
  22.  
  23. GitLab information
  24. Version:        6.0.2
  25. Revision:       10b0b8f
  26. Directory:      /home/git/gitlab
  27. DB Adapter:     mysql2
  28. URL:            http://localhost
  29. HTTP Clone URL: http://localhost/some-project.git
  30. SSH Clone URL:  git@localhost:some-project.git
  31. Using LDAP:     no
  32. Using Omniauth: no
  33.  
  34. GitLab Shell
  35. Version:        1.7.0
  36. Repositories:   /home/git/repositories/
  37. Hooks:          /home/git/gitlab-shell/hooks/
  38. Git:            /usr/bin/git
  39. root@ubuntu:/home/git/gitlab# sudo -u git -H bundle exec rake gitlab:check RAILS_ENV=production
  40. Checking Environment ...
  41.  
  42. Git configured for git user? ... yes
  43. Has python2? ... yes
  44. python2 is supported version? ... yes
  45.  
  46. Checking Environment ... Finished
  47.  
  48. Checking GitLab Shell ...
  49.  
  50. GitLab Shell version >= 1.7.0 ? ... OK (1.7.0)
  51. Repo base directory exists? ... yes
  52. Repo base directory is a symlink? ... no
  53. Repo base owned by git:git? ... yes
  54. Repo base access is drwxrws---? ... yes
  55. post-receive hook up-to-date? ... yes
  56. post-receive hooks in repos are links: ...
  57. Administrator / prologmud-data ... repository is empty
  58. Administrator / e2c_data ... repository is empty
  59. prologmud / e2c ... repository is empty
  60.  
  61. Checking GitLab Shell ... Finished
  62.  
  63. Checking Sidekiq ...
  64.  
  65. Running? ... yes
  66.  
  67. Checking Sidekiq ... Finished
  68.  
  69. Checking GitLab ...
  70.  
  71. Database config exists? ... yes
  72. Database is SQLite ... no
  73. All migrations up? ... yes
  74. GitLab config exists? ... yes
  75. GitLab config outdated? ... no
  76. Log directory writable? ... yes
  77. Tmp directory writable? ... yes
  78. Init script exists? ... yes
  79. Init script up-to-date? ... yes
  80. Projects have satellites? ...
  81. Administrator / prologmud-data ... can't create, repository is empty
  82. Administrator / e2c_data ... can't create, repository is empty
  83. prologmud / e2c ... can't create, repository is empty
  84. Redis version >= 2.0.0? ... no
  85.  Try fixing it:
  86.  Update your redis server to a version >= 2.0.0
  87.  For more information see:
  88.  gitlab-public-wiki/wiki/Trouble-Shooting-Guide in section sidekiq
  89.  Please fix the error above and rerun the checks.
  90. Your git bin path is "/usr/bin/git"
  91. Git version >= 1.7.10 ? ... yes (2.7.4)
  92.  
  93. Checking GitLab ... Finished
  94.  
  95. root@ubuntu:/home/git/gitlab# cd -
  96. /opt/PrologMUD/pack/logicmoo_nlu/prolog/pldata
  97. root@ubuntu:/opt/PrologMUD/pack/logicmoo_nlu/prolog/pldata# git pull
  98. remote: Counting objects: 12, done.
  99. remote: Total 12 (delta 8), reused 8 (delta 8), pack-reused 4
  100. Unpacking objects: 100% (12/12), done.
  101. From https://github.com/TeamSPoon/PrologMUD
  102.   b1910aa..1ac45eb  master     -> origin/master
  103. Already up-to-date.
  104. root@ubuntu:/opt/PrologMUD/pack/logicmoo_nlu/prolog/pldata# cd
  105. dsrf/           nltk_3.0a3/     Prolog_FNet/    SemLink_1.2.2c/ WNprolog-1.6/   WNprolog-1.7.1/ WNprolog-2.0/   WNprolog-3.0/
  106. root@ubuntu:/opt/PrologMUD/pack/logicmoo_nlu/prolog/pldata# git clone http://localhost/prologmud/e2c
  107. Cloning into 'e2c'...
  108. fatal: repository 'http://localhost/prologmud/e2c/' not found
  109. root@ubuntu:/opt/PrologMUD/pack/logicmoo_nlu/prolog/pldata# git clone http://localhost/prologmud/e2c.git
  110. Cloning into 'e2c'...
  111. fatal: repository 'http://localhost/prologmud/e2c.git/' not found
  112. root@ubuntu:/opt/PrologMUD/pack/logicmoo_nlu/prolog/pldata# su - prologmud
  113. prologmud@ubuntu:~$ git config --global user.name "prologmud"
  114. prologmud@ubuntu:~$ git config --global user.email "prologmud@local.host"
  115. prologmud@ubuntu:~$ mkdir e2c
  116. prologmud@ubuntu:~$ cd e2c
  117. prologmud@ubuntu:~/e2c$ git init
  118. Initialized empty Git repository in /home/prologmud/e2c/.git/
  119. prologmud@ubuntu:~/e2c$ touch README
  120. prologmud@ubuntu:~/e2c$ git add README
  121. prologmud@ubuntu:~/e2c$ git commit -m 'first commit'
  122. [master (root-commit) 5527942] first commit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement