在Ubuntu上安装Redmine;但我不知道如何使用它来创建用户/项目/角色/跟踪等

发布于 2024-10-10 03:53:40 字数 778 浏览 0 评论 0原文

我是Redmine新手。我在Ubuntu 10.04上安装了redmine(带有mysql)。 以下是我所做的安装步骤:

* $ sudo apt-get install redmine redmine-mysql subversion
* $ ln -s /usr/share/redmine/public /var/www/redmine
* In /etc/apache2/mods-available/passenger.conf, added a PassengerDefaultUser www-data directive.
* Configured the /var/www/redmine location in /etc/apache2/sites-available/default:
    <Directory /var/www/redmine>
       RailsBaseURI /redmine
       PassengerResolveSymlinksInDocumentRoot on
    </Directory>
* $ sudo a2enmod passenger
* I then restarted the apache2 server.

就是这样。 现在,我在浏览器中输入 http://localhost/redmine/ 并访问我的 redmine 实例。 因此,从这里开始,我如何创建具有不同权限的不同用户,创建不同的项目,还更新问题和其他项目管理相关的内容...... 我知道这听起来很愚蠢,但我找不到任何可以继续的东西......

Im new to Redmine. I installed redmine(with mysql) on Ubuntu 10.04.
The following were the installation steps I did:

* $ sudo apt-get install redmine redmine-mysql subversion
* $ ln -s /usr/share/redmine/public /var/www/redmine
* In /etc/apache2/mods-available/passenger.conf, added a PassengerDefaultUser www-data directive.
* Configured the /var/www/redmine location in /etc/apache2/sites-available/default:
    <Directory /var/www/redmine>
       RailsBaseURI /redmine
       PassengerResolveSymlinksInDocumentRoot on
    </Directory>
* $ sudo a2enmod passenger
* I then restarted the apache2 server.

That's it.
Now I typed http://localhost/redmine/ in my browser and accessed my redmine instance.
So from here on, how do I create different users with with different privileges, create different projects, also update the issues and other project management related stuff.....
I know this sounds silly, but I couldn't find anything to proceed....

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

奶气 2024-10-17 03:53:40

您需要将 config/email.yml.example 复制到 config/email.yml

http: //www.redmine.org/projects/redmine/wiki/EmailConfiguration

You'll need to copy config/email.yml.example to config/email.yml

http://www.redmine.org/projects/redmine/wiki/EmailConfiguration

允世 2024-10-17 03:53:40

我的 email.yml 文件的内容如下:
生产:
发送方法::smtp
smtp_设置:
ssl:正确
地址:“mail.abc.com”
端口:465
域名:“xyz.abc.com”
身份验证::登录
user_name: "[电子邮件受保护]"
密码:“通过”

The contents of my email.yml file are as below:
production:
delivery_method: :smtp
smtp_settings:
ssl: true
address: "mail.abc.com"
port: 465
domain: "xyz.abc.com"
authentication: :login
user_name: "[email protected]"
password: "pass"

青芜 2024-10-17 03:53:40

第一个问题:在您的 redmine 实例中单击“管理”。从那里您可以转到“用户”来添加用户,或者转到“角色和权限”来更改不同用户的权限等。

第二个问题:尝试在终端中使用“mail”命令从 redmine 服务器手动连接到您的邮件服务器。然后您至少能够确定 redmine 服务器是否可以连接到您的邮件服务器。

First question: Click on "administration" in your redmine instance. From there you can go to Users to add users, or Roles and permissions to change the permissions of different users etc.

Second question: Try connecting manually to your mail server from the redmine server using the "mail" command in a terminal. Then you'll at least be able to figure out if the redmine server at all can connect to your mail server.

2024-10-17 03:53:40

我创建了一个用户,然后更新了数据库以授予该用户管理权限。我的数据库有 sqlite3,我在 IRB 中使用了以下命令:

db = SQLite3::Database.new 'db/redmine.db'
db.execute("update users set admin=1")

I created a user, then updated the database to give that user administrive rights. I have sqlite3 for my database, I used the following commands in IRB:

db = SQLite3::Database.new 'db/redmine.db'
db.execute("update users set admin=1")
错々过的事 2024-10-17 03:53:40

嘿,我想我们可以使用默认的“管理员”登录。现在我可以登录我的 redmine 实例了。但电子邮件传送未配置,且通知已禁用。我该怎么办
在 config/email.yml 中配置 SMTP 服务器?我什至在“config”文件夹中找不到 email.yml 文件......

Hey, I figured we could use a default 'admin' log-in. Now I can log into my redmine instance. But the Email delivery is not configured, and notifications are disabled. How do I
Configure the SMTP server in config/email.yml? I cant even find a email.yml file in 'config' folder.....

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文