Redmine 项目管理 - 手动安装
环境 系统 Ubuntu18.04 Server LTS 系统没有安装 Apache 或 MySQL 安装 安装APACHE2 123456sudo apt updatesudo apt install apache2 libapache2-mod-passengersudo systemctl stop apache2.servicesudo systemctl start apache2.servicesudo systemctl enable apache2.service 安装数据库MYSQL 12345sudo apt-get install mysql-serversudo systemctl stop mysql.servicesudo systemctl start mysql.servicesudo systemctl enable mysql.service 运行以下命令以保护MYSQL服务器的安全: 12345678sudo mysql_secure_installation New password:...
