osticket installation – install OSTicket

In this post we are going to install Osticket on Ubuntu Server, osTicket is an open-source ticket system often used for support.

It is written in PHP and it comes with a  simple and intuitive web interface used to manage, organize, track and archive all support ticket requests in your company. today I am installing the osticket apache server

How to install osticket apache server ( osticket installation )

Now our first step is installing an apache web server and maria database server for connecting osticket service simple install via the apt ubuntu packet manager.

osticket installation

MariaDB Create database ( osticket installation )

we see our apache server and MariaDB server is installed the second step is log in with the database I am login our root database and create a new database with MySQL query.

  • create database osticket;
  • create user ‘ostuser’@’localhost’ identified by ‘password’;
  • grant all on osticket.* to ‘ostuser’@’localhost’ identified by ‘password’ with grant option;
osticket installation
  • flush privileges;
  • exit;

The next step is to install php modules osticket requirements. (osticket installation )

you download here osticket Github link I am downloading with Linux wget command

osticket installation

After completing the download, we see our directory osticket .zip extracting the file with unzipping toll (-d parameter use for our apache destination folder)

osticket installation
changing permission osticket directory ( osticket install )
changing ownership and group ( osticket installation )
osticket installation

next configuration is renamed the ost-sampleconfig.php file

After copying the new ost-sampleconfig.php file no permissions changing permission our new file

osticket installation

This is the next step complete all step we need to restart our apache server

Open your web browser and put your IP address in URL and your osticket destination directory and hit enter and we see our osticket installation dashboard now put your helpdesk name and email address, your database name password fills you’re according to all field. and click install now button

we see congratulation massage your os Ticket installation has been completed successfully and our next step is changing permission we see the image file

osticket installation

we see our osTicket URL I am opening the URL new tab and our support center is work correctly

How to install multi-website one server see here