您的位置:首页 > 运维架构 > Linux

CentOS之Phabricator的安装配置必须成功版! 推荐

2015-01-04 11:58 357 查看
https://secure.phabricator.com/book/phabricator/article/installation_guide/#installation-requirement以上是官方文档[b][b]把centos版的phabricator安装脚本下载到opt目录并安装[/b][/b]#cd /opt#wget http://www.phabricator.com/rsrc/install/install_rhel-derivs.sh #chmod 777 install_rhel-derivs.sh#./install_rhel-derivs.sh[b][b]安装必要插件[/b][/b]
#yum -y install pcre-devel
#yum -y install php-pear
#yum -y install pecl
#yum -y install apc
[b][b]把这些文件移动到apache的DocumentRoot下[/b][/b]
#mv /opt/arcanist /var/www/html
#mv /opt/libphutil /var/www/html
#mv /opt/phabricator /var/www/html
[b][b]关门防火墙和selinux[/b][/b]
# /etc/init.d/iptables stop
# setenforce 0
# chkconfig iptables off
# vim /etc/selinux/config
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
#     enforcing - SELinux security policy is enforced.
#     permissive - SELinux prints warnings instead of enforcing.
#     disabled - No SELinux policy is loaded.
SELINUX=disabled
# SELINUXTYPE= can take one of these two values:
#     targeted - Targeted processes are protected,
#     mls - Multi Level Security protection.
SELINUXTYPE=targeted
修改/etc/httpd/conf/httpd.conf以下几点//设置DocumentRootDocumentRoot "/var/www/html/phabricator/webroot"//加入index.phpDirectoryIndex index.php index.html index.html.var<VirtualHost *>RewriteEngine onRewriteRule ^/rsrc/(.*)     -                       [L,QSA]RewriteRule ^/favicon.ico   -                       [L,QSA]RewriteRule ^(.*)$          /index.php?__path__=$1  [B,L,QSA]</VirtualHost>启动必要的服务#service httpd restart#chkconfig httpd on#service mysqld restart#chkconfig httpd on更新phabricator#cd /var/www/html/phabricator#./bin/storage upgrade在浏览器中输入网址192.168.161.0即可。
                                            
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息