如何在 cpanel 中安装和 运行 rethinkdb?
how to install and run rethinkdb in cpanel?
我很难在 cpanel 中启动 RethinkDb 服务器。我可以使用 windows os.
在我的本地机器上顺利 运行
我按照此处列出的说明以某种方式将其安装在 cpanel 中。
https://www.rethinkdb.com/docs/install/centos/
这正是我在 putty 中输入的内容:
wget http://download.rethinkdb.com/dist/rethinkdb-2.3.6.tgz
tar xf rethinkdb-2.3.6.tgz
I tried the above step as well as manually downloaded the .tgz file,
extracted it and the continued with below command to no avail.
cd rethinkdb-2.3.6
./configure --allow-fetch --dynamic jemalloc
make
sudo make install
看来安装一直在进行。
我等到它完成安装并键入 rethinkdb
来启动服务器。
但是它说未定义的命令。
请指导我如何在 cpanel 中安装和 运行 RethinkDb。
谢谢。
不确定为什么要尝试从源代码安装它并编译它,因为已经创建了可用于 CentOS 6 和 7 的软件包。
sudo wget http://download.rethinkdb.com/centos/7/`uname -m`/rethinkdb.repo -O /etc/yum.repos.d/rethinkdb.repo
sudo yum install rethinkdb
如果是 CentOS 6,就把 CentOS 软件库后面的 7 换成 6。
然后为 CentOS 6.x 或为 CentOS 7 做 service rethinkdb start
或 systemctl start rethinkdb
就可以了。
我很难在 cpanel 中启动 RethinkDb 服务器。我可以使用 windows os.
在我的本地机器上顺利 运行我按照此处列出的说明以某种方式将其安装在 cpanel 中。 https://www.rethinkdb.com/docs/install/centos/
这正是我在 putty 中输入的内容:
wget http://download.rethinkdb.com/dist/rethinkdb-2.3.6.tgz
tar xf rethinkdb-2.3.6.tgz
I tried the above step as well as manually downloaded the .tgz file, extracted it and the continued with below command to no avail.
cd rethinkdb-2.3.6
./configure --allow-fetch --dynamic jemalloc
make
sudo make install
看来安装一直在进行。
我等到它完成安装并键入 rethinkdb
来启动服务器。
但是它说未定义的命令。
请指导我如何在 cpanel 中安装和 运行 RethinkDb。
谢谢。
不确定为什么要尝试从源代码安装它并编译它,因为已经创建了可用于 CentOS 6 和 7 的软件包。
sudo wget http://download.rethinkdb.com/centos/7/`uname -m`/rethinkdb.repo -O /etc/yum.repos.d/rethinkdb.repo
sudo yum install rethinkdb
如果是 CentOS 6,就把 CentOS 软件库后面的 7 换成 6。
然后为 CentOS 6.x 或为 CentOS 7 做 service rethinkdb start
或 systemctl start rethinkdb
就可以了。