This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

Installer 1.0.1 on CentOS7
#33
RE: Installer 1.0.1 on CentOS7
Hi,

You can try with this method until updated...

1. Download sentora auto install and preconfig file
Code:
wget https://raw.githubusercontent.com/sentora/sentora-installers/master/sentora_install.sh
wget -nv -O sentora_preconfig.zip https://github.com/sentora/sentora-installers/archive/1.0.0.zip



2. Extract sentora_preconfig.zip
3. Edit sentora-installers-1.0.0/preconf/sentora-install/sql/sentora_postfix.sql change this code
Code:
CREATE TABLE `quota` (
 `username` varchar(255) NOT NULL,
 `path` varchar(100) NOT NULL,
 `current` bigint(20) DEFAULT NULL,
 PRIMARY KEY (`username`,`path`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


With the new code
Code:
CREATE TABLE `quota` (
 `username` varchar(255) NOT NULL,
 `path` varchar(100) NOT NULL,
 `current` bigint(20) DEFAULT NULL,
 PRIMARY KEY (`username`,`path`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

Also this sql code
Code:
CREATE TABLE `vacation_notification` (
 `on_vacation` varchar(255) CHARACTER SET latin1 NOT NULL,
 `notified` varchar(255) CHARACTER SET latin1 NOT NULL,
 `notified_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
 PRIMARY KEY (`on_vacation`,`notified`),
 CONSTRAINT `vacation_notification_pkey` FOREIGN KEY (`on_vacation`) REFERENCES `vacation` (`email`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Postfix Admin - Virtual Vacation Notifications';

With this
Code:
CREATE TABLE `vacation_notification` (
 `on_vacation` varchar(255) CHARACTER SET latin1 NOT NULL,
 `notified` varchar(255) CHARACTER SET latin1 NOT NULL,
 `notified_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
 PRIMARY KEY (`on_vacation`,`notified`),
 CONSTRAINT `vacation_notification_pkey` FOREIGN KEY (`on_vacation`) REFERENCES `vacation` (`email`) ON DELETE CASCADE
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Postfix Admin - Virtual Vacation Notifications';

4. Edit sentora_install.sh 
Code:
wget -nv -O sentora_preconfig.zip https://github.com/sentora/sentora-installers/archive/$SENTORA_PRECONF_VERSION.zip

make like this
Code:
#wget
-nv -O sentora_preconfig.zip https://github.com/sentora/sentora-installers/archive/$SENTORA_PRECONF_VERSION.zip

5. remove sentora_preconfig.zip and zip again sentora-installers-1.0.0, dont forget to do rename with sentora_preconfig.zip

6. chmod +r sentora_install.sh;./sentora_install.sh





Finish... I hope you understand that i mean... hahaha...
I have success with that method... Good Luck...
Reply
Thanks given by: Jango


Messages In This Thread
Installer 1.0.1 on CentOS7 - by sapsa - 02-24-2015, 05:44 PM
RE: Installer 1.0.1 on CentOS7 - by Me.B - 02-24-2015, 05:49 PM
RE: Installer 1.0.1 on CentOS7 - by sapsa - 02-24-2015, 07:33 PM
RE: Installer 1.0.1 on CentOS7 - by Me.B - 02-24-2015, 07:53 PM
RE: Installer 1.0.1 on CentOS7 - by sapsa - 02-24-2015, 08:11 PM
RE: Installer 1.0.1 on CentOS7 - by Me.B - 02-24-2015, 08:26 PM
RE: Installer 1.0.1 on CentOS7 - by sapsa - 02-25-2015, 09:24 PM
RE: Installer 1.0.1 on CentOS7 - by AdamG4Corps - 03-04-2015, 12:03 AM
RE: Installer 1.0.1 on CentOS7 - by sapsa - 03-10-2015, 04:49 PM
RE: Installer 1.0.1 on CentOS7 - by Me.B - 03-10-2015, 05:14 PM
RE: Installer 1.0.1 on CentOS7 - by TGates - 03-11-2015, 04:19 AM
RE: Installer 1.0.1 on CentOS7 - by Me.B - 03-17-2015, 11:37 PM
RE: Installer 1.0.1 on CentOS7 - by TGates - 03-18-2015, 12:21 AM
RE: Installer 1.0.1 on CentOS7 - by sapsa - 03-23-2015, 04:26 PM
RE: Installer 1.0.1 on CentOS7 - by Me.B - 03-23-2015, 06:44 PM
RE: Installer 1.0.1 on CentOS7 - by sapsa - 03-26-2015, 04:16 PM
RE: Installer 1.0.1 on CentOS7 - by Me.B - 03-26-2015, 08:25 PM
RE: Installer 1.0.1 on CentOS7 - by sapsa - 04-03-2015, 06:00 PM
RE: Installer 1.0.1 on CentOS7 - by sapsa - 04-15-2015, 03:43 PM
RE: Installer 1.0.1 on CentOS7 - by elftidus - 05-04-2015, 01:51 PM
RE: Installer 1.0.1 on CentOS7 - by Me.B - 05-05-2015, 04:10 AM
RE: Installer 1.0.1 on CentOS7 - by elftidus - 05-07-2015, 10:05 AM
RE: Installer 1.0.1 on CentOS7 - by refeele - 05-14-2015, 03:10 PM
RE: Installer 1.0.1 on CentOS7 - by Me.B - 05-14-2015, 07:30 PM
RE: Installer 1.0.1 on CentOS7 - by NeonTigerUK - 05-14-2015, 10:10 PM
RE: Installer 1.0.1 on CentOS7 - by Me.B - 05-14-2015, 10:25 PM
RE: Installer 1.0.1 on CentOS7 - by NeonTigerUK - 05-14-2015, 10:29 PM
RE: Installer 1.0.1 on CentOS7 - by sapsa - 05-15-2015, 03:54 PM
RE: Installer 1.0.1 on CentOS7 - by refeele - 05-15-2015, 04:19 PM
RE: Installer 1.0.1 on CentOS7 - by sapsa - 05-25-2015, 06:14 AM
RE: Installer 1.0.1 on CentOS7 - by Me.B - 05-25-2015, 06:23 AM
RE: Installer 1.0.1 on CentOS7 - by turino - 07-15-2015, 10:01 PM
RE: Installer 1.0.1 on CentOS7 - by sapsa - 07-16-2015, 11:59 PM
RE: Installer 1.0.1 on CentOS7 - by Jango - 10-13-2015, 09:14 AM
RE: Installer 1.0.1 on CentOS7 - by Me.B - 07-22-2015, 05:50 AM
RE: Installer 1.0.1 on CentOS7 - by Jango - 10-12-2015, 12:11 PM
RE: Installer 1.0.1 on CentOS7 - by Me.B - 10-12-2015, 04:34 PM
RE: Installer 1.0.1 on CentOS7 - by Jango - 10-12-2015, 05:38 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
PLZ Help me install ssl in my own VPS Centos7 Sentora panel younessesoft 1 4 ,115 05-26-2020, 07:34 PM
Last Post: 5050
Rebuild sentora installer gozfly 1 5 ,067 11-01-2017, 06:25 AM
Last Post: Me.B
Debian 7 & 8 Support installer issues chwn21 19 60 ,746 05-18-2016, 04:42 AM
Last Post: TomThomson

Forum Jump:


Users browsing this thread: 2 Guest(s)