0
I have a multi-user mobile application that I intend to put to test.
Currently, I only have the server-side locally using MAMP(Apache, PHP and Mysql).
I intend to rent a remote server (probably Linux), and configure it to receive remote access.
So, how can I migrate my local server to this remote?
I think the question is quite broad, basically install PHP, Mysql, Apache, for example
yum install php71w
(needs the webtatic repository),yum install mysql
,yum install httpd
. Ready you have everything, now use SFTP to send the files and then make amysqldump
of the tables or execute thecreate table
and there, it’s migrated. Now if the problem is to make the application use the remote or instead of the local is another situation, which is not clear in the question.– Inkeliz
Depending on what the hosting offers, in most cases it is FTP or SFTP, so just upload to programs like https://filezilla-project.org/download.php?platform=osx (Mac OSX), which supports FTP and SFTP.
– Guilherme Nascimento