Update user_installation.sh

This commit is contained in:
abinila siva 2025-04-09 12:03:34 -04:00 committed by GitHub
parent 50da197621
commit 3a8ffbba68
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -45,5 +45,12 @@ fi
echo "Installing mxa-manager..."
sudo apt install -y memx-accl mxa-manager
# Update the configuration file to set the listen address to 0.0.0.0
echo "Configuring mxa_manager.conf to listen on 0.0.0.0..."
sudo sed -i 's/^LISTEN_ADDRESS=.*/LISTEN_ADDRESS="0.0.0.0"/' /etc/memryx/mxa_manager.conf
# Restart mxa-manager service to apply configuration changes
echo "Restarting mxa-manager service..."
sudo service mxa-manager restart
echo "MemryX installation complete!"