Skip to content

Commit 657379e

Browse files
authoredNov 2, 2022
Create all-server-fix.sh
1 parent 3f3786a commit 657379e

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
 

‎all-server-fix.sh

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/bin/bash
2+
3+
# temporary solution but will use find and replace proper command in the future
4+
cd /tmp/ispconfig*/install/lib
5+
rm installer_base.lib.php
6+
wget https://git.ispconfig.org/ahrasis/ispconfig3/-/raw/fix2210271528/install/lib/installer_base.lib.php
7+
8+
# temporary solution but will use find and replace proper command in the future
9+
user=root
10+
password=PW-BY-ISPC-AI # change to password given by ISPConfig AI accordingly
11+
database=mysql
12+
# change NEWPASSWORD to your preferred password
13+
mysql --user="$user" --password="$password" --database="$database" --execute="ALTER USER 'root'@'localhost' IDENTIFIED BY 'NEWPASSWORD';"
14+
15+
# you can continue with installing ISPConfig that you put on hold pending this fix

0 commit comments

Comments
 (0)