programing

다른 서버에서 워드프레스 데이터베이스를 호스트할 수 있습니까?

elseif 2023. 2. 23. 22:05

다른 서버에서 워드프레스 데이터베이스를 호스트할 수 있습니까?

문제는 다른 서버에서 워드프레스 데이터베이스를 호스트하고 도메인이 링크되어 있는 다른 서버에서 워드프레스 디렉토리를 호스트해야 한다는 것입니다.따라서 같은 서버에 없는 다른 데이터베이스에서 워드프레스 디렉토리를 연결할 수 있습니까?해답을 알고 있다면 문제를 해결해 주세요.잘 부탁드립니다.

예, MySQL 서버가 외부 서버에 의한 데이터베이스 접근을 허용하는 경우.WP를 설정할 때 "localhost" 대신 SQL Server를 넣습니다.

현재 데이터베이스를 내보낸 후 다른 서버에 데이터베이스를 작성할 수 있습니다.

그런 다음 config.php에 "localhost" 대신 서버의 IP 주소를 입력한 다음 config.php를 입력합니다.php가 연결됩니다.

// wp-config.php

define ( 'DB_NAME', 'yourdbname' );
define ( 'DB_USER', 'yourusername' );
define ( 'DB_PASSWORD', 'yourpassword' );
define ( 'DB_HOST', '111.222.0.1' ); // IP address of the server where MySQL is running 

// make sure MySQL server will listen to the request from your WP server IP !

https://forums.digitalpoint.com/threads/can-i-host-wordpress-database-in-an-other-server.2702115/

config.php 파일에는 localhost 대신 데이터베이스가 존재하는 다른 서버의 IP 주소를 입력합니다.단, 데이터베이스 파일과 소스 파일을 개별적으로 실행하는 것은 좋지 않습니다.자세한 내용은 다음 링크를 참조하십시오.협조해 주셔서 감사합니다.

https://forums.digitalpoint.com/threads/can-i-host-wordpress-database-in-an-other-server.2702115/

언급URL : https://stackoverflow.com/questions/39569889/is-it-possible-to-host-wordpress-database-from-other-server