MySQL은 오픈 소스 소규모 관계형 데이터베이스 관리 시스템으로 현재 인터넷상의 중소 규모 웹사이트에서 널리 사용되고 있습니다. 작은 크기, 빠른 속도, 낮은 총 소유 비용, 특히 오픈 소스의 특성으로 인해 많은 중소 웹 사이트에서는 웹 사이트 총 소유 비용을 줄이기 위해 MySQL을 웹 사이트 데이터베이스로 선택합니다.
FreeBSD 13-RELEASE
먼저 /usr/local/etc/pkg/repos
디렉토리를 생성한 다음 FreeBSD를 생성해야 합니다. conf 구성 파일을 만들고 기본 소스를 끄고 국산 소프트웨어 소스를 추가합니다. /usr/local/etc/pkg/repos
目录,然后创建FreeBSD.conf配置文件,并将默认源关闭,然后添加国内软件源。
root@freebsd:~ # mkdir -p /usr/local/etc/pkg/reposroot@freebsd:~ # vi /usr/local/etc/pkg/repos/FreeBSD.confFreeBSD: { enabled: no } ustc: { url: "pkg+http://mirrors.ustc.edu.cn/freebsd-pkg//${ABI}/quarterly", mirror_type: "srv", signature_type: "fingerprints", fingerprints: "/usr/share/keys/pkg", enabled: yes }
更新pkg源:
root@freebsd:~ # pkg update -fUpdating ustc repository catalogue... Fetching meta.txz: 100% 916 B 0.9kB/s 00:01 Fetching packagesite.txz: 100% 6 MiB 6.5MB/s 00:01 Processing entries: 100% ustc repository update completed. 30371 packages processed. All repositories are up to date.
搜索一下pkg源里面有哪些版本的mysql:
root@freebsd:~ # pkg search "^mysql"
下面安装mysql80版本:
root@freebsd:~ # pkg install -y mysql80-server mysql80-client
接下来你将运行下面的命令,这会将 MySQL 服务添加到 /etc/rc.conf
root@freebsd:~ # sysrc mysql_enable=yesmysql_enable: -> yes
패키지 소스 업데이트 :
root@freebsd:~ # service mysql-server startStarting mysql.
MySQL 설치 데이터베이스
아래 mysql80 버전을 설치하세요:root@freebsd:~ # mysqladmin -u root -p versionEnter password: mysqladmin Ver 8.0.25 for FreeBSD13.0 on amd64 (Source distribution) Copyright (c) 2000, 2021, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Server version 8.0.25 Protocol version 10 Connection Localhost via UNIX socket UNIX socket /tmp/mysql.sock Uptime: 4 min 16 sec Threads: 2 Questions: 6 Slow queries: 0 Opens: 138 Flush tables: 3 Open tables: 54 Queries per second avg: 0.023🎜mysql 서비스 시작: 🎜rrreee🎜서비스 상태 및 mysql이 수신 대기 중인 포트 보기: 🎜rrreee🎜🎜🎜🎜설치 확인🎜🎜설치를 확인하려면 루트로 로그인하여 다음 명령을 사용하는 데이터베이스 버전: 🎜rrreee🎜🎜🎜🎜🎜🎜🎜🎜
위 내용은 FreeBSD13에 MySQL 데이터베이스를 설치하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!