一鍵安裝LAMP,搭建 osTicket

LAMP 一鍵安裝包 網址:https://lamp.sh/install.html
LAMP安裝時間過長請不要用xshell安裝容易斷線,在虛擬機本機安裝。php

安裝 wget、screen、unzip,建立 screen 會話
yum -y install wget screen githtml

git clone 並賦予腳本執行權限
git clone https://github.com/teddysun/lamp.git mysql

cd lamp git

chmod 755 *.sh 給權限github

開始安裝sql

screen -S lampshell

./lamp.sh數據庫

安裝選項
一鍵安裝LAMP,搭建 osTicket
一鍵安裝LAMP,搭建 osTicket
一鍵安裝LAMP,搭建 osTicket
一鍵安裝LAMP,搭建 osTicket
一鍵安裝LAMP,搭建 osTicket
一鍵安裝LAMP,搭建 osTicket
一鍵安裝LAMP,搭建 osTicket
一鍵安裝LAMP,搭建 osTicket
一鍵安裝LAMP,搭建 osTicket
最後這裏回車確認,有信息動了就等待安裝,時間較長能夠去睡一覺。apache

安裝完畢後啓動 httpd 服務
systemctl start httpdcentos

查看是否啓動 ,若有綠色表示啓動成功
systemctl status httpd

查看firewall服務狀態
systemctl status firewalld

關閉防火牆
service firewalld stop

網頁測試輸入你的ip:192.168.0.102
一鍵安裝LAMP,搭建 osTicket
完成LAMP安裝

添加配置 Mysql 用戶,記住在mysql裏面命令結束必須加上( ;)這個符號才能執行命令

安裝模塊
yum install php-mysql php-gd php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-snmp php-mcrypt

osTicket 官網下載,解壓到win10系統下
一鍵安裝LAMP,搭建 osTicket
把如下文件導入centos系統 /data/www/default 目錄裏
scripts
upload
一鍵安裝LAMP,搭建 osTicket
scripts,upload 給權限
chown apache -R /data/www/default/upload
chown apache -R /data/www/default/scripts

到如下目錄cp拷貝文件如下命令
cd /data/www/default/upload
cp include/ost-sampleconfig.php include/ost-config.php

啓動mysql
systemctl start mysqld.service

登入數據庫須要更改mysql密碼,如下提示錯誤信息
mysql -u root -p
一鍵安裝LAMP,搭建 osTicket
編輯etc/my.cnf文件添加 skip-grant-tables 免密碼登入mysql
一鍵安裝LAMP,搭建 osTicket
systemctl restart mysqld 重啓

再登入 mysql -u root -p 如下是更改Mysql密碼,如下紅色筐是成功信息

update mysql.user set password=password('123') where user='root' and host='localhost';
flush privileges;
exit;
一鍵安裝LAMP,搭建 osTicket
再編輯etc/my.cnf文件刪除或註釋這條命令 skip-grant-tables

如下添加用戶
create database osticketdb;
create user "osuser"@"localhost" identified by "password";
grant all on osticketdb.* to "osuser"@"localhost";
flush privileges;
exit;
一鍵安裝LAMP,搭建 osTicket

配置 文件default.conf重命名爲www.a.com.comf
cd /usr/local/apache/conf/vhost/default.conf
把原文件的內容刪除,添加如下內容進去保存退出!
<VirtualHost *:80>
DocumentRoot "/data/www/default/"
ServerName www.a.com
ServerAlias www.a.com
ErrorLog "/var/log/httpd/yourdomain.com-error_log"
CustomLog "/var/log/httpd/yourdomain.com-access_log" combined

<Directory "/data/www/default/">
DirectoryIndex index.html index.php
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>

systemctl restart httpd.service 重啓服務

訪問 :192.169.0.117/upload
一鍵安裝LAMP,搭建 osTicket

下一步進行安裝
一鍵安裝LAMP,搭建 osTicket
文件沒有權限不能進行安裝

chown apache -R /data/www/default/upload

重啓httpd服務
systemctl restart httpd.service

訪問 :192.169.0.117/upload

一鍵安裝LAMP,搭建 osTicket

管理原用戶的帳號密碼本身設置記住!
查詢Mysql數據庫名
show databases;
一鍵安裝LAMP,搭建 osTicket
一鍵安裝LAMP,搭建 osTicket
已經安裝完成準備進入工單系統
訪問 :192.169.0.117/upload
一鍵安裝LAMP,搭建 osTicket

一鍵安裝LAMP,搭建 osTicket一鍵安裝LAMP,搭建 osTicket
一鍵安裝LAMP,搭建 osTicket
登入管理用戶須要更改配置文件,否則沒有東西(注意語法符號位置都要如出一轍)

到如下路徑找到配置文件添加內容
/data/www/default/upload/include

配置class.ostsession.php文件添加

$this->data->session_data = "";
一鍵安裝LAMP,搭建 osTicket
保存退出,重啓服務
systemctl restart httpd.service
一鍵安裝LAMP,搭建 osTicket完成!

相關文章
相關標籤/搜索