- 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.
977 B
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
- Checks current Web3Signer systemd service configuration
- Verifies where keys are located
- Updates systemd service to use correct paths:
- Installation:
/opt/web3signer - Data path:
/opt/web3signer/data
- Installation:
- Reloads systemd and restarts Web3Signer
- 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