禪道搭建與jmeter之jdbc連線資料庫

2021-10-06 23:51:06 字數 2231 閱讀 8288

一、搭建禪道:

第一步:解壓到/opt

[root@192 ~]# ls

zentaopms.12.2.stable.zbox_64.tar.gz

[root@192 ~]# tar -zxvf zentaopms.12.2.stable.zbox_64.tar.gz -c /opt

第二步:啟動禪道:

[root@192 ~]# /opt/zbox/zbox start

start apache success

start mysql success

[root@192 ~]#

第三步:關防火牆:

[root@192 ~]# systemctl stop firewalld.service

[root@192 ~]#

第四步:訪問禪道:直接訪問禪道所在伺服器的ip位址就可以。

第五步:首次訪問的初始密碼為:123456,使用者名為:admin。首次登入後需要修改密碼。

二、訪問禪道的資料庫系統:

第一步:新增資料庫的使用者與密碼:

直接執行/opt/zbox/auth/adduser.sh命令來新增使用者,命令如下:

[root@192 ~]# /opt/zbox/auth/adduser.sh

this tool is used to add user to access adminer

account: root

password: adding password for user root

[root@192 ~]#

第二步:通過命令列來連線資料庫,命令如下:

[root@192 ~]# /opt/zbox/bin/mysql -u root -p 3306 -p

enter password:

welcome to the mariadb monitor. commands end with ; or \g.

your mariadb connection id is 25

server version: 10.3.13-mariadb source distribution

type 『help;』 or 『\h』 for help. type 『\c』 to clear the current input statement.

mariadb [(none)]>

第三步:在資料庫中開啟遠端授權連線:

mariadb [(none)]> grant all privileges on . to root@』%』 identified by 『123456』 with grant option;

query ok, 0 rows affected (0.002 sec)

mariadb [(none)]>

###如果忘記了密碼,可以在其配置檔案中/etc/my.cnf下面加入:skip-grant-tables這一行,儲存後重啟資料庫:systemctl restart mysqld.service

如果忘記了密碼,可以在其配置檔案中/etc/my.cnf下面加入:skip-grant-tables這一行,儲存後重啟資料庫:systemctl restart mysqld.service

(1)直接使用mysql進入資料庫。

(2)使用:desc mysql.user;命令來檢視表結構,其中密碼的字段為:authentication_string

(3)使用select user,host,authentication_string from mysql.user;

(4)接下來修改密碼:update mysql.user set authentication_string=password(『1qaz@wsx』) where user=『root』;

(5)flush privileges; #授完權後重新整理許可權###

第四步:退出資料庫進行到linux命令列,然後來修改禪道的配置檔案,其目錄在:/opt/zbox/etc/mysql/my.cnf

[root@192 ~]# vim /opt/zbox/etc/mysql/my.cnf

修改內容為:找到bind-address = 127.0.0.1這一行,將其登出,前面加乙個#號就可以。修改好後儲存退出。然後重啟資料庫。重啟的命令:

[root@192 ~]# /opt/zbox/zbox restart

retart apache success

retart mysql success

第五步:此時就可以sqlyong來遠端連線我們的禪道資料庫。

搭建環境之禪道

一 安裝 1 解除安裝原mysql 查詢已安裝的mysql rpm qa grep mysql 強力解除安裝mysql rpm e nodeps mysql libs 5.1.73 7.el6.x86 64 2 關閉防火牆 第一步 關閉防火牆service iptables stop 第二步 永久關...

linux環境搭建之禪道

此次安裝,是基於centos7版本,已安裝mysql 照著我的history安裝,一把過的機率是99.99 所以在此就不對各類異常的解決方案進行舉例了1.禪道tar包的解壓 tar xvf zentaopms.10.6.stable.zbox 64.tar.gz c opt 2.埠號的修改 opt ...

linux搭建禪道 在Linux上搭建禪道

碎碎念 第一次安裝還比較順利,做筆記的同時希望能給需要的同學們帶來一點點幫助!環境 在vmware的centos 6.8發行版本上搭建禪道 一 首先確認centos是32位還是64位系統,方法如下 root localhost getconf long bit 三 使用工具 我用的xftp 將安裝包...