King0770-Notes-Enable-webui-for-cbpolicyd-Unsupported: Difference between revisions

Line 4: Line 4:
* Edit /opt/zimbra/conf/httpd.conf
* Edit /opt/zimbra/conf/httpd.conf
* /opt/zimbra/cbpolicyd/share/webui/includes/config.php  
* /opt/zimbra/cbpolicyd/share/webui/includes/config.php  
<br>
<br>
Purpose: Provide an easier method making changes to the cbpolicyd service.
Purpose: Provide an easier method making changes to the cbpolicyd service.
<br>
<br>

Revision as of 00:11, 5 February 2016

King Notes Enable-webui-for-cbpolicyd-Unsupported

Summary of steps

  • Edit /opt/zimbra/conf/httpd.conf
  • /opt/zimbra/cbpolicyd/share/webui/includes/config.php


Purpose: Provide an easier method making changes to the cbpolicyd service.
When will there be support for the cbpolicyd service in the Admin Console? See, https://bugzilla.zimbra.com/show_bug.cgi?id=70376

Section I - Edit /opt/zimbra/conf/httpd.conf

Edit /opt/zimbra/conf/httpd.conf and add index.php to the DirectoryIndex line.
FROM

<IfModule dir_module>
    DirectoryIndex index.html index.html.var 
</IfModule>

TO

<IfModule dir_module>
    DirectoryIndex index.html index.html.var index.php
</IfModule>

Add the following at the bottom of the /opt/zimbra/conf/httpd.conf file

Alias /webui /opt/zimbra/cbpolicyd/share/webui/
<Directory "/opt/zimbra/cbpolicyd/share/webui/">
    AllowOverride AuthConfig
    Order Deny,Allow
    Allow from all
</Directory>

Save your changes, and restart zimbra's apache service.

zmapachectl restart

Section II - Edit the /opt/zimbra/cbpolicyd/share/webui/includes/config.php file

Edit the /opt/zimbra/cbpolicyd/share/webui/includes/config.php file, and change the $DB_DSN line.
FROM

$DB_DSN="mysql:host=localhost;dbname=cluebringer";

TO

$DB_DSN="sqlite:/opt/zimbra/data/cbpolicyd/db/cbpolicyd.sqlitedb";

Section III - Requirements

You will need Zimbra's apache and spell packages installed. If the zimbra node running cbpolicyd service does not have apache or spell packages installed, you can manually install apache and spell.

rpm -ivh zimbra-apache-8.6.0_GA_1153.RHEL6_64-20141215151258.x86_64.rpm
rpm -ivh zimbra-spell-8.6.0_GA_1153.RHEL6_64-20141215151258.x86_64.rpm

==Section IV - cbpolicyd URL==

Once the changes are made, the URL should be available. http://mta.domain.com:7780/webui/ OR http://mta.domain.com:7780/webui/

Section V - FAQ

Question: Is this supported by Zimbra Support Team?
Answer:No

Jump to: navigation, search