Not. At least not without a lot of dirty, bad things. MSSQL and MySQL use different replication protocols, so you wonβt be able to configure it initially (thatβs how you would like to handle it). In the best case, you can hack some kind of proxy server that forwards insert / update / delete / create / change, etc. Requests from one to another. This is a terrible idea, because they do not speak the same SQL, except for the most common case. Even database dumps that are not really replication are usually incompatible between providers.
Do not do that. If you must use different operating systems on your servers, standardize the database on what works on both.
source share