mirror of
https://github.com/PurpleComputing/helpful-scripts.git
synced 2026-02-03 05:43:24 +00:00
Create fm-ubuntu.sh
This commit is contained in:
31
fm-ubuntu.sh
Normal file
31
fm-ubuntu.sh
Normal file
@@ -0,0 +1,31 @@
|
||||
# Update Ubuntu, run this multiple times until there are no more updates
|
||||
apt update && apt upgrade
|
||||
|
||||
# Check & confirm Ubunto version
|
||||
lsb_release -a
|
||||
|
||||
# Install needed packages
|
||||
apt install wget
|
||||
apt install unzip
|
||||
apt install at
|
||||
|
||||
# Install FileMaker Server
|
||||
cd ~/
|
||||
mkdir fminstaller
|
||||
cd fminstaller
|
||||
|
||||
# Download and unzip
|
||||
wget https://downloads.claris.com/esd/fms_21.1.5.500_Ubuntu22_amd64.zip
|
||||
unzip fms_21.1.5.500_Ubuntu22_amd64.zip
|
||||
|
||||
# Identify installation filename
|
||||
ls filemaker*.deb
|
||||
|
||||
# Start installation
|
||||
sudo apt install ./fms_*.deb
|
||||
|
||||
# Follow prompts during installation for license, type and admin credentials
|
||||
|
||||
# Check & confirm FileMaker Server & Nginx are running
|
||||
ps -A | grep fm
|
||||
ps -A | grep nginx
|
||||
Reference in New Issue
Block a user