Files
proxmox/rpc-translator-138/docs/archive/FIX_PERMISSIONS_AND_RUN.md
defiQUG cb47cce074 Complete markdown files cleanup and organization
- Organized 252 files across project
- Root directory: 187 → 2 files (98.9% reduction)
- Moved configuration guides to docs/04-configuration/
- Moved troubleshooting guides to docs/09-troubleshooting/
- Moved quick start guides to docs/01-getting-started/
- Moved reports to reports/ directory
- Archived temporary files
- Generated comprehensive reports and documentation
- Created maintenance scripts and guides

All files organized according to established standards.
2026-01-06 01:46:25 -08:00

977 B

Fix Permissions and Run Script

Issue: Script permission denied

Quick Fix

Run these commands:

cd /home/intlc/projects/proxmox/rpc-translator-138

# Fix permissions
chmod +x scripts/fix-web3signer-path.sh

# Run the script
./scripts/fix-web3signer-path.sh

Or Run Directly

cd /home/intlc/projects/proxmox/rpc-translator-138
bash scripts/fix-web3signer-path.sh

What the Script Does

  1. Checks current Web3Signer systemd service configuration
  2. Verifies where keys are located
  3. Updates systemd service to use correct paths:
    • Installation: /opt/web3signer
    • Data path: /opt/web3signer/data
  4. Reloads systemd and restarts Web3Signer
  5. Verifies keys are loaded

Expected Result

After running, you should see:

  • Systemd service updated
  • Web3Signer restarted
  • Keys loaded (3 addresses returned from API)

Run: chmod +x scripts/fix-web3signer-path.sh && ./scripts/fix-web3signer-path.sh