Short reference:
While accessing RM users section , received “Table ‘conntrack.tabidx‘ doesn’t exist” error.
As showed in the image below …
This is how I fixed it.
On your RM box, create a file in which we will add table information.
touch conntrack.sql nano conntrack.sql
Paste the following table
-- phpMyAdmin SQL Dump -- version 2.11.0 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Sep 03, 2008 at 11:57 AM -- Server version: 5.0.18 -- PHP Version: 5.1.2 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; -- -- Database: `conntrack` -- -- -------------------------------------------------------- -- -- Table structure for table `tabidx` -- DROP TABLE IF EXISTS `tabidx`; CREATE TABLE IF NOT EXISTS `tabidx` ( `date` date NOT NULL, PRIMARY KEY (`date`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
SAVE and exit.
Now use the following command to import table into mysql database ‘conntrack’
|
FYI,
The table code have been extracted from radius manager installation archive. Example:
/radiusmanager-4.x.x/sql/rconntrack.sql
You can import any missing table from above file and import it in mysql.
Regard’s
Syed_Jahanzaib
Filed under: Linux Related
