openfire IM伺服器搭建

2021-09-19 21:06:06 字數 1387 閱讀 4263

wget
安裝

yum install -y glibc.i686

yum install -y openfire-4.2.3-1.x86_64.rpm

設定開機啟動

chkconfig openfire on
啟動服務

systemctl start openfire
服務啟動,進入 http://:9090 進行資料庫設定即可

安裝 mariadb 資料庫

yum -y install mariadb-server mariadb-client
啟動資料庫

systemctl start mariadb #啟動服務

systemctl enable mariadb #設定開機啟動

systemctl restart mariadb #重新啟動

systemctl stop mariadb.service #停止mariadb

初始化 mariadb 伺服器配置,並修改密碼 root:root , 命令如下:

mysql_secure_installation
鏈結 db 測試

mysql -uroot -p root
建立使用者並修改訪問許可權

mariadb [(none)]> use mysql
mariadb [mysql]> create user openfire@localhost identified by 'password';
mariadb [mysql]> grant all on *.* to openfire@localhost indentified by 'password';
mariadb [mysql]> grant all privileges on *.* to openfire@'%' identified by 'password';
mariadb [mysql]> grant all privileges on *.* to openfire@'hostname' identified by 'password' with grant option;
進入到上述 openfire 後台,預設使用者名稱密碼 admin/admin, 配置 mysql 即可。

唯一一步是在初始化設定網域名稱時,需要指定相應網域名稱(這裡主要關係到 spark 客戶端註冊時所書寫的網域名稱,通常也會存在於訊息體xmpp中)

伺服器搭建

問題一 com無法訪問到伺服器 問題二 將 com 301重定向到 www.com 解決方案 在httpd.conf檔案中 追加 如下內容 options followsymlinks rewriteengine on rewritecond com rewriterule l,r 301 2 禁止...

搭建伺服器

零基礎搭建伺服器 我用的是ubuntu,所有 sudo apt get install apache2 配置php的時候已經配好了,這裡就不重複配置了 安裝apxs 安裝過php,所以這個也忽略掉 sudo apt get install apache2 dev apxs是乙個為apache超文字傳...

伺服器搭建

1 系統centos yun update 公升級安裝包 2 通過yum install mysql mysql service 安裝mysql 更新 mysql service 安裝方法 wget rpm ivh mysql community release el7 5.noarch.rpm y...