: apm을 설치할려구 압축까지 풀구 configure 해주었거든여...
: 이것저것 다 참조해서여러번 해보았어여...
: 정말 리눅스 초보라서여 질문합니다
:
: [root@aaa mysql-3.23.51-pc-linux-gnu-i686] #make
: 해주었어여
:
: 그런데, make:***No targets specified and no makefile found. Stop
: 이라구 자꾸 메세지가 뜨네여
:
: 계속 이방법 저방법으로 했는데 안되어서여
:
: 어떻게 하면 해결할 수 있는지 아니면 무엇이 잘못되었는지 제발 가르쳐주시
: 면 넘 넘 고맙겠습니다!!!
현재 설치하려는 MySQL은 이미 컴파일된 i686용 바이너리 패키지입니다.
즉 컴파일할 필요 없습니다.
shell> groupadd mysql (mysql 그룹이 없다면)
shell> useradd -g mysql mysql (mysql 유저가 없다면)
shell> cd /usr/local
shell> gunzip < /path/to/mysql-VERSION-OS.tar.gz | tar xvf -
shell> ln -s mysql-VERSION-OS mysql
shell> cd mysql
shell> scripts/mysql_install_db
shell> chown -R root /usr/local/mysql
shell> chown -R mysql /usr/local/mysql/data
shell> chgrp -R mysql /usr/local/mysql
shell> chown -R root /usr/local/mysql/bin
shell> bin/safe_mysqld --user=mysql &
직접 컴파일하려면
http://www.mysql.com/Downloads/MySQL-3.23/mysql-3.23.51.tar.gz 소스 패키지를 다운로드하세요.