jitamin这个项目管理软件看起来界面清爽, 功能也还实用, 一直想着在自己的主机上面安装一下, 参照说明文档, 经过多次尝试, 终于成功了. 这里把里面的主要步骤整理一下, 软件有一个英文的安装过程, 但是里面还是有一些坑, 要注意的.
A web server: Nginx, Apache (with mod_rewrite), or Lighttpd
PHP 5.6+ (PHP7 is recommended)
Database: MySQL is recommended, also you can choose PostgreSQL orSQLite
Composer
翻译一下:
为了方便部署, 我采用的是阿里云的ECS, 加载镜像安装, 默认配置好了
PHP运行环境(WDCPv3.0面板 多引擎切换 免费版)
Get the jitamin source code
$ git clone https://github.com/jitamin/jitamin.git
补充备注: 这里会提示没有安装git, CentOS7 yum 安装git方法
yum install git
Adjust the config file
$ cp config/config{.default,}.php
Adjust the config/config.php according to your environment, especially the database setting.$ vi config.php
补充备注:
这里要修改一下配置文件 config.php( 从config.default.php复制过来,重命名成为config.php) , 里面的数据库要改成mysql, sqlite有问题
, 不能正常使用, 不要用
Install the PHP dependency packages
$ composer install -o --no-dev补充备注:
做这个事情之前, 先要安装了composer(php包管理器), 将composer.phar下载到项目中
使用如下代码来下载curl -sS https://getcomposer.org/installer | php这个时候会提示:
bash: PHP: command not foundphp没有添加到环境变量里面去, 解决办法:
export PATH=$PATH:/usr/local/PHP/bin然后,再
echo $PATH
看看,就看见php在path里面了(可以在任意目录运行php命令)usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin:/usr/local/php/bin这时候,你可以试试在系统的
任意目录
直接敲入php -i
。
Migrate the database and initialize the database
create database tables
数据库表创建vendor/bin/phinx migrateinitialize database
数据库初始化vendor/bin/phinx seed:run
确保把目录改成具有写的权限
Confirm that the directory bootstrap/cache and storage have write permission
$ chmod -R 0777 bootstrap/cache$ chmod -R 0777 storage不能生成缓存文件的话会报错
Optional steps
$ php artisan config:cache$ php artisan route:cache这个就是用来更新缓存文件的
Access the service through web browser
Open your web browser, enter the address such as http://jitamin.dev to access the web service. The initial Super Administrator’s user name and password are listed below:username: admin or admin@admin.compassword: admin
一定要用二级域名来链接
, 比如jit.2ssf.com
,比如dev.sod.net
不支持二级目录, 比如, xx.com/jitamin, 里面的跳转逻辑一时没有搞清楚, 只能用二级域名, 这也是一个遗憾
让二级域名直接跳转到jitamin/public
这个文件夹下面, 才可以显示
首页是 jitamin/public/index.php
每次修改config.php之后, 要更新一下缓存(config 和route文件的缓存), 用这个
$ php artisan config:cache
$ php artisan route:cache
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。