- Add proper error handling for user creation with detailed logging - Verify user exists before starting PM2 - Set HOME environment variable when running PM2 - Run PM2 with --no-daemon flag and proper user context - Add ownership fix for generated ecosystem.config.js This should resolve the "User identifier does not exist: 1002" error by ensuring the user is properly created and PM2 runs in the correct context. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
99 lines
2.8 KiB
Bash
Executable File
99 lines
2.8 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ -z "$NODEVER" ]; then
|
|
NODEVER="20";
|
|
fi
|
|
|
|
if [ -z "$environment" ]; then
|
|
environment="PROD"
|
|
fi
|
|
|
|
# Create user with proper error handling
|
|
if ! id -u $user >/dev/null 2>&1; then
|
|
echo "Creating user $user with UID $uid"
|
|
adduser -u $uid -m -s /bin/bash $user || {
|
|
echo "Failed to create user $user with UID $uid"
|
|
exit 1
|
|
}
|
|
else
|
|
echo "User $user already exists"
|
|
fi
|
|
|
|
mkdir -p /home/$user/app
|
|
mkdir -p /home/$user/logs/{nginx,nodejs}
|
|
|
|
# Link log directories
|
|
rm -rf /var/log/nginx
|
|
ln -s /home/$user/logs/nginx /var/log/nginx
|
|
ln -s /home/$user/logs/nodejs /var/log/nodejs
|
|
|
|
# Configure nginx for reverse proxy
|
|
/scripts/create-nginx-config.sh
|
|
|
|
# Set ownership and permissions
|
|
chown -R $user:$user /home/$user
|
|
chmod -R 755 /home/$user
|
|
|
|
# Start nginx
|
|
nginx
|
|
|
|
if [[ $environment == 'DEV' ]]; then
|
|
echo "Starting Dev Deployment"
|
|
|
|
# Ensure microdnf is available for installing additional packages in DEV mode
|
|
if ! command -v microdnf &> /dev/null; then
|
|
echo "microdnf not found, installing with dnf..."
|
|
dnf install -y microdnf && dnf clean all
|
|
fi
|
|
|
|
# Install Memcached for session storage in DEV mode with memory limit
|
|
microdnf install -y memcached
|
|
# Start memcached with 32MB memory limit
|
|
nohup memcached -d -u $user -p 11211 -m 32
|
|
|
|
fi
|
|
|
|
# Start cron for log rotation and backups
|
|
/usr/sbin/crond
|
|
|
|
# Create app directory if it doesn't exist
|
|
if [ ! -d /home/$user/app ]; then
|
|
echo "Creating app directory at /home/$user/app"
|
|
mkdir -p /home/$user/app
|
|
chown -R $user:$user /home/$user/app
|
|
fi
|
|
|
|
# If app directory is empty, copy the simple-website example
|
|
if [ -z "$(ls -A /home/$user/app)" ]; then
|
|
echo "App directory is empty, copying simple-website example..."
|
|
cp -r /examples/simple-website/* /home/$user/app/
|
|
chown -R $user:$user /home/$user/app
|
|
echo "Copied simple-website example to provide a working application"
|
|
fi
|
|
|
|
# Now there's always an app in the user directory (either user's or example)
|
|
cd /home/$user/app
|
|
|
|
# Verify user exists and show info
|
|
echo "Verifying user setup:"
|
|
id $user || { echo "ERROR: User $user does not exist!"; exit 1; }
|
|
|
|
# Install dependencies as the user
|
|
echo "Installing npm dependencies as user $user..."
|
|
su -c "npm install" $user
|
|
|
|
# Check if ecosystem.config.js exists, if not generate it
|
|
if [ ! -f /home/$user/app/ecosystem.config.js ]; then
|
|
echo "No ecosystem.config.js found, generating from package.json..."
|
|
/scripts/generate-ecosystem-config.sh "$user" "/home/$user/app"
|
|
chown $user:$user /home/$user/app/ecosystem.config.js
|
|
fi
|
|
|
|
# Start PM2 as the user with HOME environment set
|
|
echo "Starting PM2 as user $user..."
|
|
su -c "cd /home/$user/app && HOME=/home/$user pm2 start ecosystem.config.js --no-daemon" $user &
|
|
|
|
# Follow logs
|
|
tail -f /home/$user/logs/nginx/* /home/$user/logs/nodejs/*
|
|
|
|
exit 0 |