Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

更改/合并mysql快速安装方式 #644

Merged
merged 40 commits into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
bde2738
Update install.sh
midoks Dec 17, 2024
3e5c005
update_dev
midoks Dec 17, 2024
aeb0f86
Update mysql8.4.service.tpl
midoks Dec 17, 2024
43e6990
update
midoks Dec 17, 2024
6385d49
Update install_generic.sh
midoks Dec 17, 2024
698cf0d
update
midoks Dec 17, 2024
8b8a63c
update
midoks Dec 17, 2024
16db847
update
midoks Dec 17, 2024
6d5c3e8
Update install_generic.sh
midoks Dec 17, 2024
84035e0
Update install_generic.sh
midoks Dec 17, 2024
f5b4af6
Update install_generic.sh
midoks Dec 17, 2024
ae888e6
Update install_generic.sh
midoks Dec 17, 2024
9f5844c
Update install_generic.sh
midoks Dec 17, 2024
5b11b35
Update install_generic.sh
midoks Dec 17, 2024
05278bd
Update install_generic.sh
midoks Dec 17, 2024
208e418
Update index_mysql_apt.py
midoks Dec 17, 2024
8c9bfd7
update
midoks Dec 17, 2024
e45b9b4
mysql极速办版优化
midoks Dec 17, 2024
65c7eeb
update
midoks Dec 17, 2024
a109b14
Update install_generic.sh
midoks Dec 17, 2024
34ed4b2
Update public.js
midoks Dec 17, 2024
d10c0a2
update
midoks Dec 17, 2024
da8881d
Update version.py
midoks Dec 17, 2024
0c8e69c
Update public.js
midoks Dec 17, 2024
7e81da6
Update version.py
midoks Dec 17, 2024
f63e7df
Update public.js
midoks Dec 17, 2024
a8af7be
Update public.js
midoks Dec 17, 2024
485424b
Update version.py
midoks Dec 17, 2024
19d9489
Update index.py
midoks Dec 17, 2024
5304abc
Update my5.7.cnf
midoks Dec 17, 2024
7e3c36c
Update version.py
midoks Dec 17, 2024
60a7e7f
Update mw.tpl
midoks Dec 17, 2024
c4f6db4
update
midoks Dec 17, 2024
8ef8476
Update index.py
midoks Dec 17, 2024
d9d9721
Update index.py
midoks Dec 17, 2024
f82ff2d
Update rhel.sh
midoks Dec 17, 2024
aee405f
update
midoks Dec 17, 2024
798c52f
Update sql_mysql.py
midoks Dec 17, 2024
85e6a67
Update sql_mysql.py
midoks Dec 17, 2024
1973f6a
删除冗余mysql插件
midoks Dec 17, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion plugins/data_query/sql_mysql.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def get_options(self, sid=None):
result['host'] = '127.0.0.1'
result['username'] = 'root'

if sid in ['mysql', 'mysql-apt', 'mysql-yum']:
if sid in ['mysql', 'mysql-apt', 'mysql-yum', 'mysql-community']:
my_cnf_path = "{}/{}/etc/my.cnf".format(mw.getServerDir(),sid)
if not os.path.exists(my_cnf_path):
return False
Expand Down Expand Up @@ -132,6 +132,10 @@ def getServerList(self):
local_mysql_yum = "{}/mysql-yum/etc/my.cnf".format(mw.getServerDir())
if os.path.exists(local_mysql_yum):
data.append({'name':'本地服务器[yum]', 'val':'mysql-yum'})

local_mysql_yum = "{}/mysql-community/etc/my.cnf".format(mw.getServerDir())
if os.path.exists(local_mysql_yum):
data.append({'name':'本地服务器[community]', 'val':'mysql-community'})
return mw.returnData(True, 'ok', data)

@singleton
Expand Down
189 changes: 0 additions & 189 deletions plugins/mysql-apt/index_mysql_apt.py

This file was deleted.

70 changes: 0 additions & 70 deletions plugins/mysql-apt/install.sh

This file was deleted.

Loading
Loading