CentOS 7.x frontaccounting
From Notes_Wiki
Home > CentOS > CentOS 7.x > Web Based Tools > CentOS 7.x frontaccounting
To install and use Frontaccounting use following steps:
- Create CentOS 7 lxc container and root ssh to container. In case of VM or physical machine *disable firewalld and SELinux*
- Install required software
- yum -y install php wget mariadb-server httpd php-mysql vim unzip php-bcmath
- Download the source tarball from https://sourceforge.net/projects/frontaccounting/ and extract it in /var/www/html:
- cd /root
- wget https://downloads.sourceforge.net/project/frontaccounting/FrontAccounting%202.4/2.4.7/frontaccounting-2.4.7.tar.gz
- cd /var/www/html
- tar xzf /root/frontaccounting-2.4.7.tar.gz
- chown -R apache:apache frontaccounting
- chmod -R 777 frontaccounting/company/0
- mv frontaccounting fa
- Edit /etc/php.ini as follows:
-
- display_errors = On
- display_startup_errors = On
- session.auto_start = 0 ;default
-
- Edit /etc/httpd/conf/httpd.conf and under '<Directory "/var/www/html">' set:
- AllowOverride All
- Start and enable various services:
- systemctl start httpd
- systemctl start mariadb
- systemctl enable httpd
- systemctl enable mariadb
- Open http://<FQDN>/fa and click 'Continue'. On next database page enter following values:
- Server host
- localhost
- Server port
- 3306
- Database name
- fa
- Database user
- root
- Install Additional COAs from FA Repository
- Yes
- Click Continue to proceed
- On next page of Chart of Accounts select "English Indian" and click continue
- On next page enter following details:
- Company name
- Rekall Software Pvt. Ltd.
- Admin passwords
- secret
- Click install. On following page click here to start.
- Remove install directory:
- rm fa/install -rf
- Login into the frontaccounting software.
Refer:
Home > CentOS > CentOS 7.x > Web Based Tools > CentOS 7.x frontaccounting