곰팅이의 열정

검색 :
RSS 구독 : 글 / 댓글 / 트랙백 / 글+트랙백

글 검색 결과

mysql
글 3개

ActivePerl사용시 DBD::mysql 설치

2009/05/12 13:24, 글쓴이 혜승아빠

DBD::mysql - A Perl5 Database Interface to the MySQL database
=============================================================

The driver installation is described in

  INSTALL.html

In short: If you are using

  Windows/ActivePerl

    1.) If you need to use an HTTP Proxy, set the environment
        variable http_proxy, for example like this:

          set http_proxy=http://myproxy.com:8080/

    2.) The actual installation is as simple as

   ppm install DBI
          ppm install DBD::mysql

        As of this writing, the above procedure won't work with
        ActivePerl 5.8.0, because so far a PPM for DBD::mysql is
        not available from the ActiveState server. I don't know
        why. However, Randy Kobes has kindly donated a PPM package
        to his own repository. You can use this as follows:

          ppm install http://theoryx5.uwinnipeg.ca/ppms/DBD-mysql.ppd

2009/05/12 13:24 2009/05/12 13:24

맨 위로

mysql 2008

2008/11/13 09:52, 글쓴이 혜승아빠
mySQL이 sun에 흡수되고서는 확실히 우리나라에서 마케팅이 활발해 졌습니다.

sun도 모든 os를 open했으며 mySQL을 도입 함으로써 오픈소스 시장의 법칙을 확실히 깨닫고 있다는 느낌입니다.

제가 생각하는 오픈소스의 법칙은 뭐 간단합니다.
일단 개발을 하고 관심있는 사람들을 끌어 들이죠, 물론 참여하기 좋아하는 사람들이 있기 마련이고 일단 발을 들여놓은 사람들은 활동적이고 열정적인 사람일 가능성이 많죠, 이거 참 좋으네 후끈..사람 구하기가 정말 힘든데 ㅎㅎㅎ

그렇다면 돈도 안 들이고 함께 구할 사람도 구하며 무료이기 때문에 사용자를 넓힐 수 있는거죠, 물론 먹고 살 걱정이 있어선 안되겠죠, 자신의 일 80, 나머지 20 입니다.

그러다 일이 잘되면 회사를 만들고 비즈니스를 하되 프로그램 판매가 아닌 컨설팅 및 support가 주된 수익 모델이 되는거죠, 물론 enterprise버젼은 추가 기능과 함께 서비스도 구매 해야 하고 말이죠.

개인도 여러개의 오픈소스 프로젝트에 참여 할 수도 있겠죠, 물론 성공하는 프로젝트도 있겠지만 수 많은 실패 하는 프로젝트도 있을 겁니다. 자연계의 경우를 보더라도 수 많은 실패가 있어야 그 중 성공이 탄생하는 법이죠, 거대 기업이 오픈 소스를 이기기 힘든게 이 이유라고 합니다.

거대 기업은 기업의 특성상 수 많은 실패를 할 수는 없거든요. 그들은 돈이 될만한 프로젝트만을 진행하며 한 번 진행할때 올인할 수 밖에 없는 특성을 가지고 있습니다.

흠 어떤 오픈소스 프로젝트를 해봐야 할까? 흠흠...
2008/11/13 09:52 2008/11/13 09:52

맨 위로

서버 restart

2007/04/16 11:35, 글쓴이 혜승아빠
/usr/local/mysql/bin
safe_mysqld &


* To start mysql server:
# /etc/init.d/mysqld start

* To stop mysql server:
# /etc/init.d/mysqld stop

* To restart mysql server
# /etc/init.d/mysqld restart

Tip: Redhat Linux also supports service command, which can be use to start, restart, stop any service:
# service mysqld start
# service mysqld stop
# service mysqld restart

(B) If you are using mysql on Debian Linux then use following command:

* To start mysql server:
# /etc/init.d/mysql start

* To stop mysql server:
# /etc/init.d/mysql stop

* To restart mysql server
# /etc/init.d/mysql restart

More MySQL articles are here and here.

2007/04/16 11:35 2007/04/16 11:35

맨 위로