bitnami

Bitnami GitLab 5.2.0: gitlab_sidekiq not running and could not be started

馋奶兔 提交于 2019-11-29 23:54:36
问题 We are using Bitnami GitLab 5.2.0. We stumbled upon that we can't push into new repository, like git@192.168.133.10:sandbox/testgit2.git , but we can work with old ones. Closer investigation showed that gitlab_sidekiq is not running. /opt/bitnami/ctlscript.sh restart gitlab_sidekiq gitlab_sidekiq could not be started Where to look? Should I update first? UPDATE: Bitnami GitLab 5.2 server is broken down: can't push code into new repositories. (While old repositories are unaffected)

BitNami一键安装Redmine

三世轮回 提交于 2019-11-29 18:24:21
1. 简介 对于一个新手,如果严格按照 官方文档 来安装redmine,我想会“疯”掉的。有没有一种简便的方法。有滴,那就是BitNami。 BitNami提供redmine的一键安装程序,简单、易用、方便。 2. 安装 下载地址: http://bitnami.org/stack/redmine 不仅仅是windows的有一键安装程序,linux也有一键安装程序。我的安装环境是windows xp,下载的版本是bitnami-redmine-2.3.0-0-windows-installer.exe。 跟大部分windows安装程序一样,一路默认“下一步”即可。需要注意的是,创建管理员账号的时候,需要将用户名称和密码记录下来,此用户即为redmine安装好后的管理员账号,如下图 2‑1所示: 图2‑1 设置管理员账号信息 安装完后会自动打开浏览器,如下图 2‑2所示,点击“Access BitNami Redmine Stack”即可访问redmine。 图2‑2 安装成功 输入图 2‑1所示的管理员账号和密码,即可登录redmine。如下图 2‑3所示。开始体验吧。 图2‑3 管理员登录 3. 集成git 3.1. 新建版本库 登录redmine,添加用户,新建一个project,新建完成后,在配置->版本库中选择git,然后在”Path to .git repository

安装部署Redmine+Subversion服务

你。 提交于 2019-11-29 18:24:09
Redmine 是一个基于Web的灵活的项目管理(Project Management)软件。它是开源、免费、易扩充的,同时Redmine社区( www.redmine.org )也非常的活跃,这保证了Redmine能够更新支持更多实用的功能。但是Redmine的安装步骤比较复杂: http://www.redmine.org/projects/redmine/wiki/HowTo_Install_Redmine_in_a_sub-URI_on_Windows_with_Apache ,而另一个社区BitNami提供了一个整合的安装包( http://bitnami.org/stack/redmine ) ,支持Windows、Linux、Max等系统,同时BitNami提供了一个配置好Redmine的Linux下的虚拟机环境,下载即用。BitNami-Redmine安装包将会安装:Redmine、Apache、ImageMagick、MySQL、Subversion、Git、Ruby、Rails、RubyGems等软件。安装包也会安装Subversion,使用命令行可以启动svnserver和创建版本库,但为了更友好的界面和更好的管理,我们将会使用CollabNet的SubversionEdge来管理和使用Subversion。BitNami

Bitnami GitLab 5.0 and git & Eclipse EGit quick start

江枫思渺然 提交于 2019-11-29 08:49:36
We have just set up GitLab 5.0 using Bitnami stack and need quick start. By Bitnami default SSH is disabled. That is OK with me, I'd prefer use HTTP. But it seems that GitLab 5.0 doesn't smoothly support HTTP. For example on project page http://192.168.133.99/gitlab/publicproject1 , when switching to HTTP option, help below is not updated. I have one project publicproject1 checked as public. But I can't clone it in any way (using git or EGit): weibl@FX-JSJ532 ~/pp1 $ git clone http://192.168.133.99/gitlab/publicproject1.git Cloning into 'publicproject1'... fatal: http://192.168.133.99/gitlab

How to migrate gitlab backups to new server which has latest gitlab version

跟風遠走 提交于 2019-11-29 08:18:18
问题 I am trying to migrate my gitlab backups for my old server to new server. my old server has gitlab (gitlab-6.5.1-0) and my new server has gitlab version (gitlab 6.6.5-omnibus). i taken backup from my old server using the following command bundle exec rake gitlab:backup:create RAILS_ENV=production and when i try to restore this backup in new server using this command gitlab-rake gitlab:backup:restore BACKUP=1395394855 I am getting the following output Unpacking backup ... done GitLab version

使用docker-compose 大杀器来部署服务 上

我怕爱的太早我们不能终老 提交于 2019-11-29 00:23:13
我们都听过或者用过 docker,然而使用方式却是仅仅用手动的方式,这样去操作 docker 还是很原始。 好吧,可能在小白的眼中噼里啪啦的对着 term 一顿操作会很拉风,但是高手很不屑!在高手眼里…too young, too low. 因为高手都是自动化的,今天就稍微介绍下自动化工具,也就是大杀器 docker-compose 使用docker-compose 大杀器来部署服务 上 先从 docker 说起 docker 简介 为什么说 docker 是快速部署 好了, 我们进化到,快速1.0 时代 于是, 我们又进化了, 快速2.0时代 于是,我们再次加入光荣的进化, 快速3.0时代 docker 安装 docker 的一些概念 镜像 性能损耗 容器 hub docker 简单使用 搜索镜像 下载镜像 helloworld 我常用的 docker 命令 登录 查看容器 查找镜像 下载镜像 删除镜像 开始 看日志 停止一个容器示例 查看容器状态 格式 更快更好更强 docker-compose 简介 docker-compose 是什么 为什么要用 docker-compose,他解决了什么 那么哪里可以买到呢? 从一个小例开始 先安装吧 helloworld 服务更新 软升级 硬升级 从日志得到需要的信息 直接使用 logs 使用类似linux tail 命令 docker

How do I access to symfony config.php remotely?

我只是一个虾纸丫 提交于 2019-11-28 06:34:59
问题 I have set up Symfony in bitnami on Amazon EC2. Now I want to access web/config.php , but was told the file can only be run via localhost. And I also tried to log on remote desktop of EC2, but failed. So now how can I ensure symfony is all good on server? 回答1: Open config.php and edit following code if (!in_array(@$_SERVER['REMOTE_ADDR'], array( '127.0.0.1', '::1', ))) { header('HTTP/1.0 403 Forbidden'); exit('This script is only accessible from localhost.'); } You can either add the IP

How to start process via SSH, so it keeps running?

我是研究僧i 提交于 2019-11-28 03:42:53
问题 I have three files: monitor.sh, which starts python scripts: sudo python ./webCheck & sudo python ./apiCheck & and the otherones, webCheck & apiCheck: it is supposed to run in the background, after I close the terminal. It checks my other website's availability, in an endless loop. I can't get it to work, I am trying nohup, but can't get the syntax right. webCheck have to be run with sudo. Does nohup be included also in the sh script? I guess as the monitor.sh is just supposed to start other

Bitnami GitLab 5.0 and git & Eclipse EGit quick start

邮差的信 提交于 2019-11-28 02:13:09
问题 We have just set up GitLab 5.0 using Bitnami stack and need quick start. By Bitnami default SSH is disabled. That is OK with me, I'd prefer use HTTP. But it seems that GitLab 5.0 doesn't smoothly support HTTP. For example on project page http://192.168.133.99/gitlab/publicproject1 , when switching to HTTP option, help below is not updated. I have one project publicproject1 checked as public. But I can't clone it in any way (using git or EGit): weibl@FX-JSJ532 ~/pp1 $ git clone http://192.168

XAMPP permissions on Mac OS X?

纵饮孤独 提交于 2019-11-26 03:51:57
问题 I installed XAMPP 1.7.3 on Mac OS X 10.6.8 without changing any defaults. The webserver seems to work okay, but the permissions on the htdocs directory are set to \"Read only\" for everyone other than system. So (a) I have to provide root password every time I copy in web content, and, more problematic, (b) NetBeans says it can\'t create a target directory, and doesn\'t even generate the index.php file in the source directory. Do I just need to manually change permissions on the htdocs