Solved No setup wizard after installing ScreenConnect on CentOS 7
-
Re: Installing ScreenConnect on CentOS 7
[root@bnasc ~]# workingDirectory=~/scInstall; downloadUrl="http://www.screenconnect.com/Download?Action=DownloadLatest&Platform=Linux&PreRelease=false"; rm -rf $workingDirectory; mkdir $workingDirectory; (cd $workingDirectory; if which wget; then wget -O sc.tar.gz "$downloadUrl"; else curl -L "$downloadUrl" > sc.tar.gz; fi; tar xf sc.tar.gz; $(find . -name install.*);); rm -rf $workingDirectory; /usr/bin/which: no wget in (/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/root/bin) % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 223 100 223 0 0 665 0 --:--:-- --:--:-- --:--:-- 667 100 198 100 198 0 0 303 0 --:--:-- --:--:-- --:--:-- 0 100 35.0M 100 35.0M 0 0 6904k 0 0:00:05 0:00:05 --:--:-- 9648k Welcome to the ScreenConnect Installer The installer will do these things: 1) Prompt you for installation options 2) Display a list of actions to be taken 3) Prompt you for execution of the actions 4) Execute the actions Where would you like to install ScreenConnect? [/opt/screenconnect] What would you like as the service name for this ScreenConnect installation? [screenconnect] The installation will perform the following actions: - Create service script at /etc/init.d/screenconnect - Create startup links in /etc/rcX.d/ directories - Copy files into /opt/screenconnect - Transform configuration files - Start screenconnect service Do you want to install ScreenConnect? (Y/n): Y Running 'Create service script at /etc/init.d/screenconnect'... Running 'Create startup links in /etc/rcX.d/ directories'... Running 'Copy files into /opt/screenconnect'... Running 'Transform configuration files'... Running 'Start screenconnect service'... Installation complete! Trying to figure out the best URL for you to use... To access your new ScreenConnect installation, open a browser and navigate to: http://localhost:8040/Host [root@bnasc ~]# firewall-cmd --zone=public --add-port=8040/tcp --permanent success [root@bnasc ~]# firewall-cmd --zone=public --add-port=8041/tcp --permanent success [root@bnasc ~]# firewall-cmd --reload success [root@bnasc ~]#
-
And it is my ERL in the colo. Not sure why yet, but it is rerouting the connection to the default port forward rule. I tried logging in with my normal admin credentials and it worked.
-
The web config looks to be correct. It has the
IsSetup
flag false.<add key="IsSetup" value="false"></add> <add key="AllowRemoteSetup" value="true"></add> <add key="SetupRedirectFilter" value="aspx"></add> <add key="SetupPage" value="~/SetupWizard.aspx"></add>
-
If I manually go to http://10.254.0.36:8040/SetupWizard.aspx it redirects me to Administration.aspx which is what should only happen after setup.
-
And something is intercepting it or something.
I logged into a Windows VM on the same network with ScreenConnect instead of connecting VIA an IPSEC VPN from my house and I see the setup wizard.
I be confused...
-
As my goal is to migrate my ScreenConnect installation, it is kind of hard to use said installation..
-
There is an allow remote setup setting (see above snippet), but it is set to true by default.
-
And it is my ERL in the colo. Not sure why yet, but it is rerouting the connection to the default port forward rule. I tried logging in with my normal admin credentials and it worked.