리눅스 + mysql + php ?

ljh0431의 이미지

리눅스상에서 mysql서버를 따로 분리하고
php와 mysql을 연동해서 처리할 수 있나요 ?
컴파일해서 처리하는 방법은 아는데 이 방법외에
mysql서버를 분리하고 싶습니다.
아시는 분 답변 주시면 감사하겠습니다.

bh의 이미지

apache랑php를 함께깔고,,
mysql만 따로 깐다,,

어떨까요?

--
이 아이디는 이제 쓰이지 않습니다.

kall의 이미지

접속할때 서버주소를 분리된 DB서버 주소로 바꾸면 되지 않나요?

보통 같은 기계에서 쓰니까 localhost를 쓰지만,
DB서버가 따로 분리되어 있다면 그 서버의 도메인네임이나 아이피주소를 적어주시면 됩니다.

php컴파일시 들어가는건 MySQL클라이언트로 알고 있습니다.
서버는 어디에 있어도 접속만 가능하면 상관없지요..

----
자신을 이길 수 있는자는
무슨짓이든 할수있다..
즉..무서운 넘이란 말이지 ^-_-^
나? 아직 멀었지 ㅠㅠ

hajang의 이미지

user 테이블에 웹서버 아이피와 mysql 유저 계정만 넣어 주면 됩니다.

지리즈의 이미지

#데이터 베이스 서버에서...
mysql -u root -p
password: ******
#만약 데이터베이스가 없다면...
mysql>create database newdatabase;
mysql>grant all privileges on newdatabase.* to newuser@localhost identified by 'newpassord';


#만약 데이터베이스가 있다면 여기부터...
mysql>grant all privileges on newdatabase.* to newuser@% identified by 'newpassord';
#or
mysql>grant all privileges on newdatabase.* to newuser@webserverhostname identified by 'newpassord';

#윗줄은 어떠한 호스트로 부터 접속을 허용하는 것이고..
#및줄은 특정한 호스트로 부터의 접속을 허용하는 것...
#어느 쪽이던 편리한 데로 사용하시길 바랍니다.

#계정을 활성화시키기 위해 mysql을 릴로드해준다.
mysql>exit
mysqladmin -u root -p reload
password:*****

#웹서버에서는 접속방법
<?php
   $link = mysql_connect ("mysqlhostname", "newdatabase", "'newpassord'")
       or die ("접속할 수 없습니다");
   print ("접속되었습니다");
   mysql_close ($link);
?> 

There is no spoon. Neo from the Matrix 1999.

김충길의 이미지

지리즈 wrote:
#데이터 베이스 서버에서...
mysql -u root -p
password: ******
#만약 데이터베이스가 없다면...
mysql>create database newdatabase;
mysql>grant all privileges on newdatabase.* to newuser@localhost identified by 'newpassord';


#만약 데이터베이스가 있다면 여기부터...
mysql>grant all privileges on newdatabase.* to newuser@% identified by 'newpassord';
#or
mysql>grant all privileges on newdatabase.* to newuser@webserverhostname identified by 'newpassord';

#윗줄은 어떠한 호스트로 부터 접속을 허용하는 것이고..
#및줄은 특정한 호스트로 부터의 접속을 허용하는 것...
#어느 쪽이던 편리한 데로 사용하시길 바랍니다.

#계정을 활성화시키기 위해 mysql을 릴로드해준다.
mysql>exit
mysqladmin -u root -p reload
password:*****

#웹서버에서는 접속방법
<?php
   $link = mysql_connect ("mysqlhostname", "newdatabase", "'newpassord'")
       or die ("접속할 수 없습니다");
   print ("접속되었습니다");
   mysql_close ($link);
?> 

php 코드에 password를 사용하는건 좋지 않은거 같습니다.
php.ini 파일을 사용하시거나 httpd.conf 파일의 설정을 권해 드립니다.

Quote:

<Directory /var/www/html/mydatabase>
php_value mysql.default_user fred
php_value mysql.default_password secret
php_value mysql.default_host server.example.com
</Directory>

$conn = mysql_connect();

screen + vim + ctags 좋아요~

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.