• Categories
    Category
    {{ postCtrl.tags }}
    • {{ category.tag_type }}

      • {{tag.tag_name}}
      • View more
  • Categories
    Category
    {{ postCtrl.tags }}
    • {{ category.tag_type }}

      • {{tag.tag_name}}
      • View more
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial News Comments FAQ Related Articles

How to install TicketsCAD on CentOS 6

{{postValue.id}}

How to install TicketsCAD on CentOS 6

Tickets CAD is a free open-source CAD software and it is a part of the open ISES Project.Tickets CAD is primarily designed to support community emergency services.It contains Chat, maps, directions, GPS tracking, extensive email/SMS/messaging capabilities,etc. This tutorial covers the installation procedure of TicketsCAD on CentOS 6.

Installation procedure

Pre-Requisite

For installing TicketsCAD, you need to have LAMP stack installed in your system. Next download the installation package from TicketsCAD from its official site following link http://www.ticketscad.org/downloads/.

After downloading the package, list the packages using the ll command.

[root@linuxhelp1 Downloads]# ll
total 4780
-rw-r--r--. 1 root root 4891563 Aug  4 01:41 tickets_3.12A_082516.zip

Move to downloaded package to /opt/ directory.

[root@linuxhelp1 Downloads]# mv tickets_3.12A_082516.zip /opt/

Now create the TicketsCAD directory in /var/www/html/ directory.

[root@linuxhelp1 Downloads]# mkdir -p /var/www/html/ticketscad

Extract the package to TicketsCAD directory using the unzip command.

[root@linuxhelp1 opt]# unzip tickets_3.12A_082516.zip -d /var/www/html/ticketscad/
Archive:  tickets_3.12A_082516.zip
  inflating: /var/www/html/ticketscad/about.php  
  inflating: /var/www/html/ticketscad/about_2_12_beta.txt  
  inflating: /var/www/html/ticketscad/about_2_13_beta.txt  
...
...
...
  inflating: /var/www/html/ticketscad/y.php  
  inflating: /var/www/html/ticketscad/_changed files.txt  
   creating: /var/www/html/ticketscad/_osm/
   creating: /var/www/html/ticketscad/_osm/tiles/

Change the ownership for the TicketsCAD directory by running the following command.

[root@linuxhelp1 opt]# chown apache:apache -R /var/www/html/ticketscad/

Create a seperate database for the TicketsCAD by entering into MariaDB and follow the set of below commands to create a database and grant the privileges to the created user.

[root@linuxhelp1 opt]# mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with   or g.
Your MySQL connection id is 10
Server version: 5.1.73 Source distribution
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type ' help '  or ' h'  for help. Type ' c'  to clear the current input statement.

mysql>  CREATE DATABASE ticketsdb 
Query OK, 1 row affected (0.00 sec)

mysql>  GRANT ALL PRIVILEGES ON ticketsdb.* TO ' ticketsuser' @' localhost'  IDENTIFIED BY ' password'  WITH GRANT OPTION 
Query OK, 0 rows affected (0.02 sec)

mysql>  FLUSH PRIVILEGES 
Query OK, 0 rows affected (0.00 sec)

mysql>  exit
Bye

Edit the php.ini file using the vim editor and modify the following lines in the file. Save and exit from the file.

[root@linuxhelp1 opt]# vim /etc/php.ini 

memory_limit = 256M
safe_mode = Off
magic_quotes_runtime = Off
session.auto_start = 0

Next configure the apache virtual host using vim editor and uncomment the following line.

[root@linuxhelp1 opt]# vim /etc/httpd/conf/httpd.conf
#NameVirtualHost *:80

Add the following virtual host configuration lines to the file. Save and exit from the file.

< VirtualHost *:80> 
ServerAdmin admin@yourdomain.com
DocumentRoot /var/www/html/ticketscad/
ServerName linuxhelp1

< Directory /var/www/html/ticketscad/> 
    Options FollowSymLinks
    AllowOverride All
< /Directory> 
    ErrorLog logs/yourdomain.com-error_log
    CustomLog logs/yourdomain.com-access_log common
< /VirtualHost> 

Next restart the Apache web server by executing the following command.

[root@linuxhelp1 opt]# service httpd restart
Stopping httpd:                                            [  OK  ]
Starting httpd: httpd: apr_sockaddr_info_get() failed for linuxhelp1
httpd: Could not reliably determine the server' s fully qualified domain name, using 127.0.0.1 for ServerName
                                                           [  OK  ]

Now open the web browser and enter the machine' s IP address and give enter. Select install.php link in the screen.

install link

The TicketsCAD installation page appears on the screen. Now enter your database information with the required information.

database information

The installation is completed. Click on the start tickets option on the screen.
start tickets

The wizard asks the user to use the Tickets quick start routine, click " yes please" option.

tickets start

Select your required country.

country

Enter the site name and click next.

site name

Next add the incident types with required information and click next.
incident types

Enter the number of responders and click next.
responders

Enter the Responder types with the required details.

responder types

The wizard shows the Responder status definitions and click finish to complete the installation process.

responder status

The setup is complete and click finish.
setup

The TicketsCAD login page is shown in the screen and enter the required credentials and log in.

login page

The TicketsCAD' s homescreen is shown.

homescreen

The installation procedure of TicketsCAD on CentOS 6.

Tags:
jackson
Author: 

Comments ( 0 )

No comments available

Add a comment
{{postCtrl.cmtErrMsg}}

Frequently asked questions ( 5 )

Q

where can I check for its latest releases?

A

On their official site "http://www.ticketscad.org/downloads/"

Q

What for TicketsCAD is used for?

A

Tickets CAD is a free open-source CAD software and it is a part of the open ISES Project. Tickets CAD is primarily designed to support community emergency services. It contains Chat, maps, di

Q

What was the php.ini file refers to ?

A

It refers to the php parameters like upload size and memory size for your site and it goes on.

Q

When I click the e-mail link for a user it asks me to login?

A

Only registered users can send e-mail to other users via the built-in e-mail form, and only if the administrator has enabled this feature. This is to prevent malicious use of the e-mail system by anonymous users.

Q

I registered in the past but cannot login any more?!

A

It is possible an administrator has deactivated or deleted your account for some reason. Also, many boards periodically remove users who have not posted for a long time to reduce the size of the database. If this has happened, try registering again and being more involved in discussions.

Back To Top!
Rank
User
Points

Top Contributers

userNamenaveelansari
135850

Top Contributers

userNameayanbhatti
92510

Top Contributers

userNamehamzaahmed
32150

Top Contributers

1
userNamelinuxhelp
31040

Top Contributers

userNamemuhammadali
24500
Can you help legeek ?
Installation of the call center module

hello

I wish to install a call center in virtual with issabel, I downloaded the latest version of it , but I don' t arrive to install the call center module in issabel. please help me

thanks!

Networking
  • Routing
  • trunk
  • Netmask
  • Packet Capture
  • domain
  • HTTP Proxy
Server Setup
  • NFS
  • KVM
  • Memory
  • Sendmail
  • WebDAV
  • LXC
Shell Commands
  • Cloud commander
  • Command line archive tools
  • last command
  • Shell
  • terminal
  • Throttle
Desktop Application
  • Linux app
  • Pithos
  • Retrospect
  • Scribe
  • TortoiseHg
  • 4Images
Monitoring Tool
  • Monit
  • Apache Server Monitoring
  • EtherApe 
  • Arpwatch Tool
  • Auditd
  • Barman
Web Application
  • Nutch
  • Amazon VPC
  • FarmWarDeployer
  • Rukovoditel
  • Mirror site
  • Chef
Contact Us | Terms of Use| Privacy Policy| Disclaimer
© 2025 LinuxHelp.com All rights reserved. Linux™ is the registered trademark of Linus Torvalds. This site is not affiliated with linus torvalds in any way.