v1.0.21 preparations; fixes #182

This commit is contained in:
Pinga 2025-05-14 14:55:02 +03:00
parent 9a5b3e6f6e
commit 49080e783e
6 changed files with 186 additions and 9 deletions

View file

@ -12,6 +12,8 @@ Namingo is a state-of-the-art open-source domain registry platform, diligently c
Namingo is optimally designed for the 2026 ICANN new gTLD application round, providing a straightforward and easily updatable platform. Its contemporary architecture and intuitive interface make it an ideal choice for efficient and modern domain registry management. Namingo is optimally designed for the 2026 ICANN new gTLD application round, providing a straightforward and easily updatable platform. Its contemporary architecture and intuitive interface make it an ideal choice for efficient and modern domain registry management.
**Namingo passes ICANN OT&E RST for the `MainRSPEvaluationTest` profile**, demonstrating compliance with required operational standards.
## Get Involved ## Get Involved
Were finalizing support for Alpine Linux, PostgreSQL, and SQLite and are looking for contributors to help test and refine these features. Were finalizing support for Alpine Linux, PostgreSQL, and SQLite and are looking for contributors to help test and refine these features.
@ -88,7 +90,10 @@ After installation, be sure to review all the guides in the Documentation sectio
### Updating ### Updating
To update, you **must run the update scripts sequentially** without skipping versions. To update, you **must run the update scripts sequentially** without skipping versions.
For example, if you're on **v1.0.18** and the latest is **v1.0.20**, first update to **v1.0.19**, then to **v1.0.20**. For example, if you're on **v1.0.19** and the latest is **v1.0.21**, first update to **v1.0.20**, then to **v1.0.21**.
- **v1.0.20 → v1.0.21**
Download and run the [`update1021.sh`](docs/update1021.sh) script.
- **v1.0.19 → v1.0.20** - **v1.0.19 → v1.0.20**
Download and run the [`update1020.sh`](docs/update1020.sh) script. Download and run the [`update1020.sh`](docs/update1020.sh) script.
@ -96,9 +101,6 @@ For example, if you're on **v1.0.18** and the latest is **v1.0.20**, first updat
- **v1.0.18 → v1.0.19** - **v1.0.18 → v1.0.19**
Download and run the [`update1019.sh`](docs/update1019.sh) script. Download and run the [`update1019.sh`](docs/update1019.sh) script.
- **v1.0.17 → v1.0.18**
Download and run the [`update1018.sh`](docs/update1018.sh) script.
For **older versions**, please refer to [`update.md`](docs/update.md). For **older versions**, please refer to [`update.md`](docs/update.md).
### [Configuration Guide](docs/configuration.md) [Required] ### [Configuration Guide](docs/configuration.md) [Required]

View file

@ -14,7 +14,7 @@
<a href="https://namingo.org" target="_blank" class="link-secondary" rel="noopener">Namingo</a> <a href="https://namingo.org" target="_blank" class="link-secondary" rel="noopener">Namingo</a>
</li> </li>
<li class="list-inline-item"> <li class="list-inline-item">
v1.0.20 v1.0.21
</li> </li>
</ul> </ul>
</div> </div>

View file

@ -177,7 +177,7 @@ ln -sf /usr/share/adminer/latest.php /usr/share/adminer/adminer.php
# --- Clone registry source code --- # --- Clone registry source code ---
echo "Cloning registry source code..." echo "Cloning registry source code..."
git clone --branch v1.0.20 --single-branch https://github.com/getnamingo/registry /opt/registry git clone --branch v1.0.21 --single-branch https://github.com/getnamingo/registry /opt/registry
# --- Firewall configuration using ufw --- # --- Firewall configuration using ufw ---
echo "Configuring firewall rules..." echo "Configuring firewall rules..."

View file

@ -259,7 +259,7 @@ EOF
wget "http://www.adminer.org/latest.php" -O /usr/share/adminer/latest.php wget "http://www.adminer.org/latest.php" -O /usr/share/adminer/latest.php
ln -s /usr/share/adminer/latest.php /usr/share/adminer/adminer.php ln -s /usr/share/adminer/latest.php /usr/share/adminer/adminer.php
git clone --branch v1.0.20 --single-branch https://github.com/getnamingo/registry /opt/registry git clone --branch v1.0.21 --single-branch https://github.com/getnamingo/registry /opt/registry
echo "Setting up firewall rules..." echo "Setting up firewall rules..."
ufw allow 22/tcp ufw allow 22/tcp

View file

@ -1,9 +1,11 @@
# Namingo Update Guide # Namingo Update Guide
## v1.0.0 to v1.0.17 ## v1.0.0 to v1.0.18
You must run update scripts in order, without skipping versions. For example, if you're on 1.0.15 and the latest is 1.0.17, first update to 1.0.16, then to 1.0.17. You must run update scripts in order, without skipping versions. For example, if you're on 1.0.15 and the latest is 1.0.17, first update to 1.0.16, then to 1.0.17.
- v1.0.17 to v1.0.18 - download and run the [update1018.sh](update1018.sh) script.
- v1.0.16 to v1.0.17 - download and run the [update1017.sh](update1017.sh) script. - v1.0.16 to v1.0.17 - download and run the [update1017.sh](update1017.sh) script.
- v1.0.15 to v1.0.16 - download and run the [update1016.sh](update1016.sh) script. - v1.0.15 to v1.0.16 - download and run the [update1016.sh](update1016.sh) script.

173
docs/update1021.sh Normal file
View file

@ -0,0 +1,173 @@
#!/bin/bash
# Ensure the script is run as root
if [[ $EUID -ne 0 ]]; then
echo "Error: This update script must be run as root or with sudo." >&2
exit 1
fi
# Prompt the user for confirmation
echo "This will update Namingo Registry from v1.0.20 to v1.0.21."
echo "Make sure you have a backup of the database, /var/www/cp, and /opt/registry."
read -p "Are you sure you want to proceed? (y/n): " confirm
# Check user input
if [[ "$confirm" != "y" ]]; then
echo "Upgrade aborted."
exit 0
fi
# Create backup directory
backup_dir="/opt/backup"
mkdir -p "$backup_dir"
# Backup directories
echo "Creating backups..."
tar -czf "$backup_dir/cp_backup_$(date +%F).tar.gz" -C / var/www/cp
tar -czf "$backup_dir/whois_backup_$(date +%F).tar.gz" -C / var/www/whois
tar -czf "$backup_dir/registry_backup_$(date +%F).tar.gz" -C / opt/registry
# Database credentials
config_file="/opt/registry/whois/port43/config.php"
db_user=$(grep "'db_username'" "$config_file" | awk -F "=> '" '{print $2}' | sed "s/',//")
db_pass=$(grep "'db_password'" "$config_file" | awk -F "=> '" '{print $2}' | sed "s/',//")
db_host=$(grep "'db_host'" "$config_file" | awk -F "=> '" '{print $2}' | sed "s/',//")
# List of databases to back up
databases=("registry" "registryAudit" "registryTransaction")
# Backup specific databases
for db_name in "${databases[@]}"; do
echo "Backing up database $db_name..."
sql_backup_file="$backup_dir/db_${db_name}_backup_$(date +%F).sql"
mysqldump -u"$db_user" -p"$db_pass" -h"$db_host" "$db_name" > "$sql_backup_file"
# Compress the SQL backup file
echo "Compressing database backup $db_name..."
tar -czf "${sql_backup_file}.tar.gz" -C "$backup_dir" "$(basename "$sql_backup_file")"
# Remove the uncompressed SQL file
rm "$sql_backup_file"
done
# Stop services
echo "Stopping services..."
systemctl stop caddy
systemctl stop epp
systemctl stop whois
systemctl stop rdap
systemctl stop das
systemctl stop msg_producer
systemctl stop msg_worker
# Clear cache
echo "Clearing cache..."
php /var/www/cp/bin/clear_cache.php
# Clone the new version of the repository
echo "Cloning v1.0.21 from the repository..."
git clone --branch v1.0.21 --single-branch https://github.com/getnamingo/registry /opt/registry1021
# Copy files from the new version to the appropriate directories
echo "Copying files..."
# Function to copy files and maintain directory structure
copy_files() {
src_dir=$1
dest_dir=$2
if [[ -d "$src_dir" ]]; then
echo "Copying from $src_dir to $dest_dir..."
cp -R "$src_dir/." "$dest_dir/"
else
echo "Source directory $src_dir does not exist. Skipping..."
fi
}
# Copy specific directories
copy_files "/opt/registry1021/automation" "/opt/registry/automation"
copy_files "/opt/registry1021/cp" "/var/www/cp"
copy_files "/opt/registry1021/whois/web" "/var/www/whois"
copy_files "/opt/registry1021/das" "/opt/registry/das"
copy_files "/opt/registry1021/whois/port43" "/opt/registry/whois/port43"
copy_files "/opt/registry1021/rdap" "/opt/registry/rdap"
copy_files "/opt/registry1021/epp" "/opt/registry/epp"
copy_files "/opt/registry1021/docs" "/opt/registry/docs"
# Run composer update in copied directories (excluding docs)
echo "Running composer update..."
composer_update() {
dir=$1
if [[ -d "$dir" ]]; then
echo "Updating composer in $dir..."
cd "$dir" || exit
COMPOSER_ALLOW_SUPERUSER=1 composer update --no-interaction --quiet
else
echo "Directory $dir does not exist. Skipping composer update..."
fi
}
# Update composer in relevant directories
composer_update "/opt/registry/automation"
composer_update "/var/www/cp"
composer_update "/opt/registry/das"
composer_update "/opt/registry/whois/port43"
composer_update "/opt/registry/rdap"
composer_update "/opt/registry/epp"
CONFIG_FILE="/opt/registry/rdap/config.php"
# Extract database credentials from the config file
DB_NAME=$(grep "'db_database'" "$CONFIG_FILE" | awk -F "=> " '{print $2}' | tr -d "',")
DB_USER=$(grep "'db_username'" "$CONFIG_FILE" | awk -F "=> " '{print $2}' | tr -d "',")
DB_PASS=$(grep "'db_password'" "$CONFIG_FILE" | awk -F "=> " '{print $2}' | tr -d "',")
# Update indexes
echo "Dropping old UNIQUE KEY deposit_id_deposit_type..."
mysql -u$DB_USER -p$DB_PASS $DB_NAME -e "ALTER TABLE rde_escrow_deposits DROP INDEX deposit_id_deposit_type;"
echo "Creating new UNIQUE KEY deposit_id_deposit_type (deposit_id, deposit_type, file_name)..."
mysql -u$DB_USER -p$DB_PASS $DB_NAME -e "ALTER TABLE rde_escrow_deposits ADD UNIQUE KEY deposit_id_deposit_type (deposit_id, deposit_type, file_name);"
echo "Database structure updated successfully."
# Check the Linux distribution and version
if [[ -e /etc/os-release ]]; then
. /etc/os-release
OS=$NAME
VER=$VERSION_ID
fi
# Determine PHP configuration files based on OS and version
if [[ "$OS" == "Ubuntu" && "$VER" == "24.04" ]]; then
PHP_VERSION="php8.3"
else
PHP_VERSION="php8.2"
fi
# Restart PHP-FPM service
echo "Restarting PHP FPM service..."
systemctl restart ${PHP_VERSION}-fpm
wget "http://www.adminer.org/latest.php" -O /usr/share/adminer/latest.php
# Start services
echo "Starting services..."
systemctl start epp
systemctl start whois
systemctl start rdap
systemctl start das
systemctl start caddy
systemctl start msg_producer
systemctl start msg_worker
# Check if services started successfully
if [[ $? -eq 0 ]]; then
echo "Services started successfully. Deleting /opt/registry1021..."
rm -rf /opt/registry1021
else
echo "There was an issue starting the services. /opt/registry1021 will not be deleted."
fi
echo "Upgrade to v1.0.21 completed successfully."