7. Install PHP.
[root@rhel1 ~]# yum -y install php php-mysql php-common php-gd php-mbstring php-mcrypt php-devel php-xml php-imap php-ldap php-mbstring php-odbc php-pear php-xmlrpc php-soap mod_ssl
8. Restart Apache server.
[root@rhel1 ~]# service httpd restart Stopping httpd: [ OK ] Starting httpd: [ OK ] [root@rhel1 ~]#
9. Install & Configure OsTicket application :
[root@rhel1 ~]# yum -y install unzip [root@rhel1 ~]# cd /var/www/html [root@rhel1 html]# wget http://osticket.com/sites/default/files/download/osTicket-v1.9.2.zip [root@rhel1 html]# unzip osTicket-v1.9.2.zip [root@rhel1 html]# mv upload support
10. Rename and change Permission of ost-sampleconfig.php file.
[root@rhel1 html]# cd /var/www/html/support/include [root@rhel1 include]# mv ost-sampleconfig.php ost-config.php [root@rhel1 include]# chmod 777 ost-config.php
11. Change in /etc/php.ini for the parameter short_open_tag
Open the file “/etc/php.ini”change “short_open_tag ” parameter to below one.
short_open_tag = On
12. Now Restart the apache One more time.
[root@rhel1 include]# service httpd restart Stopping httpd: [ OK ] Starting httpd: [ OK ] [root@rhel1 include]#
13. Now Open Browser and use below format in the address bar.
http://ip address/support/setup/ or http://hostname or doamain/support/setup/
You will get below page in browser for further setup:
Click on Continue Button at the bottom. In the next window Enter below details and click install now button:
-->System Settings : Helpdesk Name: LinuxRoutes HelpDesk Default Email: admin@domain.com Default Language: English --> Admin User : First Name: Manmohan Last Name : Mirkar Email Add : admin@domain.com Username : administrator Password : Password Retype Pass : Password --> Database Settings : MySQL Hostname : localhost MySQL Database : osticket MySQL Username : osticket MySQL password : password
Screenshot to install Open Source support ticketing system OsTicket:
If all details are correct you will get success window along with URL for accessing OsTicket application as below:
Now next time onward use address (Your osTicket URL) given in the above screenshot. So now onwards you can create new users using admin credentials and tickets can be created with normal user using URL given in the above screenshot “http://<IP address>/support/”
14. Change permission of “ost-config.php” and delete setup directory.
[root@rhel1 include]# cd /var/www/html/support [root@rhel1 support]# rm -rf setup [root@rhel1 support]# chmod 644 /var/www/html/support/include/ost-config.php
Reference:
Leave a Reply