...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
...
Linux Server for Fineract Platform using Java-OpenJDK-15.0.2 - Higher Versions Not Recommended (Anything above 15.0.XX) is not yet tested thus not recommended) Tomcat server (Minimum v.9.0. |
xx) or above (latest available at https://tomcat.apache.org/download-90.cgi MYSQL server (v.5.7. |
xx) - Higher |
or lower versions not tested and not recommended on production servers until you test them your self Keep all the credentials used in this document as your defaults until after you are done with your first successful installation. |
Step 1 - Installing System Updates and Prerequisites:
...
# sudo apt-get update
# sudo apt-get upgrade
Install Java 15.2: 0.X the specific linkhttps://www.oracle.com/java/technologies/javase/jdk15-archive-downloads.html#license-lightbox :
The latest version of Java OpenJDK on Ubuntu 18.04 is OpenJDK-11 this means we will have to install Java OpenJDK-15.0.2 using the tar.gz or the Debian Packages. In the steps below we will use the tar.gz procedure to install Java. First of all, visit the Oracle Archives page and download the Linux x64 Compressed Archive namely jdk-15.0.2_linux-x64_bin.tar.gz and once you are done follow th following steps https://www.oracle.com/java/technologies/javase/jdk15-archive-downloads.html
...
(OR you can run this to download directly to your server:
...
)
# sudo mv tar -zxvf jdk-15.0.2 /2_linux-x64_bin.tar.gz
# sudo mv jdk-15.0.2 /usr/lib/jvm/# sudo update-alternatives --install /usr/bin/java java /usr/lib/jvm/jdk-15.0.2/bin/java 21 (if you have more than one Java installations then use the number of current your Java installation)
# sudo update-alternatives --config java
...
Info |
---|
mysql passwordOnce the installation is completed, the MySQL service will start automatically. To check whether the MySQL server is running, type: # sudo systemctl status mysql Configure the Port and binding address as shown below using sudo nano command Set the bind address as you wish for example 0.0.0.0 sets it to any IP address across the globe (Strongly not recommended) Run the security script: for proper configurations Follow the prompts and configure you installation to the best of your interests # sudo mysql Next, check which authentication method each of your MySQL user accounts use with the following command: SELECT user,authentication_string,plugin,host FROM mysql.user; Output should look like below Set the password to "mysql" Please note that this is Bad for security, but just to get all installed and instructions on how to change it will be provided later in this guide) Setting password use the command below ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'mysql'; FLUSH PRIVILEGES; SELECT user,authentication_string,plugin,host FROM mysql.user;
|
...
# sudo wget https://archive.apache.org/dist/tomcat/tomcat-9/v9.0.6272/bin/apache-tomcat-9.0.6272.tar.gz
# sudo mv apache-tomcat-9.0.6272.tar.gz /usr/share
# cd /usr/share
# sudo tar xvf apache-tomcat-9.0.6272.tar.gz
# sudo rm -f apache-tomcat-9.0.6272.tar.gz
# sudo mv apache-tomcat-9.0.62 72 tomcat9
# cd ~
Install nano - text editor
# sudo apt-get install nano
OPTIONAL (date/time settings)
Code Block |
---|
Check date: |
# date
Code Block |
---|
and if needed update with |
# dpkg-reconfigure tzdata
Step 2 - Tomcat setup
Enabling SSL
...
Info |
---|
set keystore passwordset password to: xyz123 (Bad for security, but just to get all installed and instructions on how to change it will be provided later in this guide) This gets stored in /usr/share as tomcat.keystore |
Updating server.xml configuration file
...
# sudo nano /usr/share/tomcat9/conf/server.xml
Info |
---|
nano shortcut keysTip: To delete line by line you could use ctrl+k To exit you could use ctrl+x To confirm say yes & you could use y then click on enter button to save |
copy and replace below content into it
<?xml version='1.0' encoding='utf-8'?> <Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="on" /> <Resource <Connector |
xyz123" <Engine name="Catalina" defaultHost="localhost"> <Realm className="org.apache.catalina.realm.LockOutRealm"> <Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true"> |
Info |
---|
Note:If your any of the server port connections are using port number = 443, then you need to change your port number to 8443, in server.xml here:- port="443" maxThreads="200" scheme="https" to port="8443" maxThreads="200" scheme="https" |
...
The filename above will vary depending on what the latest version of the connector is
use this script for auto starting tomcat after reboot
Edit /etc/init.d/tomcat9
...
Code Block |
---|
sudo nano /etc/init.d/tomcat9 |
copy below red colored content into it & exit by pressing ctrl+x then confirm with y for yes.
...
|
start)
sh
|
|
|
|
|
|
|
|
|
esac
exit 0
...
|
Then Execute on Terminal
Code Block |
---|
sudo chmod 755 /etc/init.d/tomcat9 |
Link this script to the startup folders with a symbolic link.Execute these two commands.
...
Code Block |
---|
sudo ln -s /etc/init.d/tomcat9 /etc/rc1.d/K99tomcat |
...
sudo ln -s /etc/init.d/tomcat9 /etc/rc2.d/S99tomcat |
Finally execute
Code Block |
---|
sudo systemctl enable tomcat9 |
More Information
Check Status
Code Block |
---|
sudo systemctl status tomcat9 |
Manually Stop
Code Block |
---|
sudo systemctl stop tomcat9 |
Manually Start
Code Block |
---|
sudo systemctl start tomcat9 |
Step 3 - Fineract Platform and Database Setup/Population
...
Info |
---|
For latest released code you can download from https://sourceforge.net/projects/mifos/files/latest/download?source=files orIf wget/download fails, this link:- https://github.com/apache/fineract/releases In which you will find the following folders and file
|
# cd /usr/src
# sudo wget https://sourceforge.net/projects/mifos/files/Mifos%20X/mifosplatform-21.07.02.PATCH_RELEASE.zip/download
# sudo unzip mifosplatform-21.07.02.PATCH_RELEASE.zip
# cd mifosplatform-21.07.02.PATCH_RELEASE
...
Info |
---|
pentahoReports & upload directoryPentaho Reports If /pentahoReports is not copied into /root/.mifosx, penatoh reports,ex:accounting reports will fail with: Income Statement.prpt","defaultUserMessage":"Unable to create key: No loader was able to handle the given key data: /usr/share/tomcat9/.mifosx/pentahoReports/Income Statement.prpt","userMessageGlobalisationCode":"error.msg.reporting.error","parameterName":null,"value" Upload Directory
|
Start tomcat:
# sudo /etc/init.d/tomcat9 start
...
Code Block | ||
---|---|---|
| ||
<Listener className="org.apache.catalina.core.JasperListener" /> |
OPTIONAL:
*in separate terminal you may watch your Mifos(logs) come to life like this:
# sudo tail -f /usr/share/tomcat9/logs/catalina.out
(if all is good, after a while of loading, you should see something like: Root WebApplicationContext: initialization completed in 45876 ms)
Info |
---|
It's Done!Congratulations! You could access Mifos X through any internet browser:- @ https://server ip address or if you are using server port number as 8443 then you could access it @ https://localhost:8443 With these credentials:- username: mifos password: password |
...