Spider Installation
A guide to installing the Spider storage engine on Debian/Ubuntu and other Linux distributions, including loading the plugin and configuring data nodes.
Configuring Data Nodes
CREATE TABLE test.spider_example (
id INT PRIMARY KEY AUTO_INCREMENT,
name VARCHAR(50)
) ENGINE=InnoDB;CREATE USER spider@192.168.1.1;
SET PASSWORD FOR spider@192.168.1.1 = PASSWORD('passwd');GRANT ALL ON test.spider_example TO spider@192.168.1.1;Install Spider on Spider Node
Step 1: Install Spider Package
Step 2: Load the Spider Plugin
Step 3: Verify Loading of the Spider Plugin
Configuring Spider Nodes
Configure the Server
Create the Table
Last updated
Was this helpful?

