Howto install redmine on Ubuntu 16.04

# Howto install redmine on Ubuntu 16.04 # Requirements # A server running Ubuntu 16.04. # A normal user with sudo privileges setup on your server. # Update the System sudo apt-get update -y sudo apt-get upgrade -y # Install and Configure MysqL sudo apt-get install MysqL-server -y sudo vi /etc/MysqL/my.cnf [client] default-character-set=utf8 [MysqLd] character-set-server=utf8 # Start MysqL and enable it to automatically start at boot time using following commands. sudo systemctl start MysqL sudo systemctl enable MysqL # Install redmine sudo apt-get install redmine redmine-MysqL # Install Apache Web Server sudo apt-get install apache2 libapache2-mod-passenger # Configure Apache Web Server sudo cp /usr/share/doc/redmine/examples/apache2-passenger-host.conf /etc/apache2/sites-available/ sudo ln -sf /usr/share/redmine /var/lib/redmine/default/passenger sudo a2ensite apache2-passenger-host.conf sudo a2dissite default sudo service apache2 reload

相关文章

1.安装过程出现0x00000000指令引用的0x00000000内存该内存不能为written 如果你安装的是inux系统 需要在...
写在全面:如果根据以下教程涉及到只读文件需要更改文件权限才能需修改文件内容,参考我的另一篇博客:...
写在前面:以下步骤中需要在终端输入命令,电脑端查看博客的朋友可以直接复制粘贴到终端,手机端查看的...
ubuntu16.04和18.04更换国内源 写在前面:安装好ubuntu双系统后,默认的软件更新源是国外的,在国内使用...
ubuntu双系统启动时卡死解决办法(在ubuntu16.04和18.04测试无误) 问题描述: 在安装完ubuntu双系统后...
又来造轮子了。。。。。。。。。。。。。。。。 今天使用w3af向文件中写入的时候,发现没有write权限,...