2020-03-30 08:25:29 +00:00
|
|
|
---
|
|
|
|
machine_translated: true
|
2020-05-15 04:34:54 +00:00
|
|
|
machine_translated_rev: 72537a2d527c63c07aa5d2361a8829f3895cf2bd
|
2020-04-04 09:15:31 +00:00
|
|
|
toc_priority: 65
|
|
|
|
toc_title: "C\xF3mo crear ClickHouse en Mac OS X"
|
2020-03-30 08:25:29 +00:00
|
|
|
---
|
|
|
|
|
2020-05-15 04:34:54 +00:00
|
|
|
# Cómo crear ClickHouse en Mac OS X {#how-to-build-clickhouse-on-mac-os-x}
|
2020-03-21 04:11:51 +00:00
|
|
|
|
|
|
|
Build debería funcionar en Mac OS X 10.15 (Catalina)
|
|
|
|
|
|
|
|
## Instalar Homebrew {#install-homebrew}
|
|
|
|
|
|
|
|
``` bash
|
|
|
|
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
|
|
|
|
```
|
|
|
|
|
2020-05-15 04:34:54 +00:00
|
|
|
## Instalar compiladores, herramientas y bibliotecas necesarios {#install-required-compilers-tools-and-libraries}
|
2020-03-21 04:11:51 +00:00
|
|
|
|
|
|
|
``` bash
|
|
|
|
$ brew install cmake ninja libtool gettext
|
|
|
|
```
|
|
|
|
|
2020-05-15 04:34:54 +00:00
|
|
|
## Fuentes de ClickHouse de pago {#checkout-clickhouse-sources}
|
2020-03-21 04:11:51 +00:00
|
|
|
|
|
|
|
``` bash
|
|
|
|
$ git clone --recursive git@github.com:ClickHouse/ClickHouse.git
|
|
|
|
```
|
|
|
|
|
|
|
|
o
|
|
|
|
|
|
|
|
``` bash
|
|
|
|
$ git clone --recursive https://github.com/ClickHouse/ClickHouse.git
|
|
|
|
|
|
|
|
$ cd ClickHouse
|
|
|
|
```
|
|
|
|
|
|
|
|
## Construir ClickHouse {#build-clickhouse}
|
|
|
|
|
|
|
|
``` bash
|
|
|
|
$ mkdir build
|
|
|
|
$ cd build
|
|
|
|
$ cmake .. -DCMAKE_CXX_COMPILER=`which clang++` -DCMAKE_C_COMPILER=`which clang`
|
|
|
|
$ ninja
|
|
|
|
$ cd ..
|
|
|
|
```
|
|
|
|
|
|
|
|
## Advertencia {#caveats}
|
|
|
|
|
|
|
|
Si tiene la intención de ejecutar clickhouse-server, asegúrese de aumentar la variable maxfiles del sistema.
|
|
|
|
|
|
|
|
!!! info "Nota"
|
2020-04-04 09:15:31 +00:00
|
|
|
Tendrás que usar sudo.
|
2020-03-21 04:11:51 +00:00
|
|
|
|
|
|
|
Para ello, cree el siguiente archivo:
|
|
|
|
|
|
|
|
/Library/LaunchDaemons/limit.maxfiles.lista:
|
|
|
|
|
|
|
|
``` xml
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
|
|
|
|
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
|
|
<plist version="1.0">
|
|
|
|
<dict>
|
|
|
|
<key>Label</key>
|
|
|
|
<string>limit.maxfiles</string>
|
|
|
|
<key>ProgramArguments</key>
|
|
|
|
<array>
|
|
|
|
<string>launchctl</string>
|
|
|
|
<string>limit</string>
|
|
|
|
<string>maxfiles</string>
|
|
|
|
<string>524288</string>
|
|
|
|
<string>524288</string>
|
|
|
|
</array>
|
|
|
|
<key>RunAtLoad</key>
|
|
|
|
<true/>
|
|
|
|
<key>ServiceIPC</key>
|
|
|
|
<false/>
|
|
|
|
</dict>
|
|
|
|
</plist>
|
|
|
|
```
|
|
|
|
|
|
|
|
Ejecute el siguiente comando:
|
|
|
|
|
|
|
|
``` bash
|
|
|
|
$ sudo chown root:wheel /Library/LaunchDaemons/limit.maxfiles.plist
|
|
|
|
```
|
|
|
|
|
|
|
|
Reiniciar.
|
|
|
|
|
2020-04-04 09:15:31 +00:00
|
|
|
Para verificar si está funcionando, puede usar `ulimit -n` comando.
|
2020-03-21 04:11:51 +00:00
|
|
|
|
2020-04-04 09:15:31 +00:00
|
|
|
[Artículo Original](https://clickhouse.tech/docs/en/development/build_osx/) <!--hide-->
|