May 26, 2020
Estimated Post Reading Time ~

AEM Dispatcher Setup for Linux

Installing dispatcher for AEM in Apache Web-server in Linux may get little tricky, as documentation provided by Adobe on Installation of Dispatcher in Linux is not sufficient, and if we take it in analogy and try doing same way we do in Windows, then we face some issues locating the appropriate files.

Prerequisites for Dispatcher Setup
Apache 2.2 web-server – In Ubuntu 12.0 and higher, Apache 2.2 web-server is pre-installed, but in case it is not there, you can find the installation instructions here.
Dispatcher Module – Appropriate dispatcher module can be downloaded from Adobe Package Share.

Installation Instructions
Considering Apache web-server is already setup in the system, go ahead and extract dispatcher module using the following command:
 tar -xvzf <dispatcher..xxxx..yyyy.tar.gz>
Once you have extracted the files, now you have to move the appropriate files to their respective apt path.
Move “dispatcher-apache2.x-4.1.x.so” to “/usr/lib/apache2/modules”. There you will find all the modules already being loaded by Apache 2 webserver.
Adobe recommends giving a soft name to your dispatcher module, but you don’t need it as once setup is done, you will be hardly using it again.
Now go ahead and create a folder conf under “/etc/apache2/”, and move “dispatcher.any” file under this folder. Make sure that you don’t move your dispatcher.any file to the ‘conf.d’ the folder which is already present.
Now is the time to edit and map the module file that you added and map the dispatcher.any file. Go ahead and edit apache2.conf file present under “etc/apache2/”.
Scroll to the end, put some nice comments about you adding some new configs, and add the following:
LoadModule dispatcher_module /usr/lib/apache2/modules/dispatcher-apache2.2-4.1.5.so

<IfModule disp_apache2.c>
# location of the configuration file. eg: 'conf/dispatcher.any'
DispatcherConfig conf/dispatcher.any

# location of the dispatcher log file. eg: 'logs/dispatcher.log'
DispatcherLog /var/log/apache2/dispatcher.log

# log level for the dispatcher log
# 0 Errors
# 1 Warnings
# 2 Infos
# 3 Debug
DispatcherLogLevel 3

# if turned to 1, the dispatcher looks like a normal module
DispatcherNoServerHeader 0

# if turned to 1, request to / are not handled by the dispatcher
# use the mod_alias then for the correct mapping
DispatcherDeclineRoot 0

# if turned to 1, the dispatcher uses the URL already processed
# by handlers preceding the dispatcher (i.e. mod_rewrite)
# instead of the original one passed to the webserver.
DispatcherUseProcessedURL 0

# if turned to 1, the dispatcher does not spool an error
# response to the client (where the status code is greater
# or equal than 400), but passes the status code to
# Apache, which e.g. allows an ErrorDocument directive
# to process such a status code.
DispatcherPassError 0
</IfModule>
Also add the following config to the end of apache2.conf file, which loads the dispatcher in web-server.
<Directory />

<IfModule disp_apache2.c> 
# enable dispatcher for ALL request. if this is too restrictive, 
# move it to another location
SetHandler dispatcher-handler
</IfModule>

Options FollowSymLinks
AllowOverride None

</Directory>
Comments given above are self-explanatory but, you can still go and edit configs if needed as per the following descriptions:

DispatcherConfig: Location and name of the configuration file (Can be given as an absolute or relative path)
DispatcherLog: Location and name of the log file (Can be given as an absolute or relative path)
DispatcherLogLevel: Log level for the log file
DispatcherNoServerHeader: Whether to use the Apache or CQ server header
DispatcherDeclineRoot: Defines whether to decline requests to the root “/”
DispatcherUseProcessedURL: Defines whether to use the original request URL or to use one already processed by other handlers (ie: mod_rewrite)
Note: This is essential for rewriting incoming links (stripping away the ‘content/{site_name}’)
DispatcherPassError: Defines whether CQ or Apache will handle HTTP 40x error codes
SetHandler (Apache parameter): Forces all matching files to be processed by a handler
Make sure, that path that is provided for the load module, matches the path where you placed your dispatcher module. Also match the name and version of the dispatcher module, and change the config as required.

Now configure dispatcher.any file. Edit /renders section in dispatcher.any.
/renders
{
/rend01
{
/hostname "localhost"
[2]--> /port "80"
}
}
/cache
{
/docroot "/var/cache/apache2/<cqcache>"
}
By default you may find port set to 8000 or 8080, change it to 80.
Give whatever soft-name you want to give to your cache folder in place of “cqcache”

Restart the apache server to let the webserver take effect. You can restart the apache server by using the following command:
sudo /etc/init.d/apache2 restart
Once the server is restarted and you get a [OK] message, go and check /var/log/apache2/dispatcher.log file. If it says dispatcher initialized with correct cache path, it means dispatcher is successfully set up and ready to be used.
Now you just need to configure your CQ replication agent, and point dispatcher flush agents to correct port.


By aem4beginner

No comments:

Post a Comment

If you have any doubts or questions, please let us know.