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
#31
RE: Installer 1.0.1 on CentOS7
Nadal will win Big Grin
No support using PM (Auto adding to IGNORE list!), use the forum. 
How to ask
Freelance AWS Certified Architect & SysOps// DevOps

10$ free to start your VPS
Reply
Thanks given by:
#32
RE: Installer 1.0.1 on CentOS7
(02-24-2015, 07:33 PM)sapsa Wrote: Dear Me.B,

I manage to find the problem (you probably too).
sentora_postfix.sql
this database structure script is executed till 115 line which is "CREATE TABLE 'quota' (" anything after that table including that table aint created so probably postfix is broken.

Probably because usernamer is VarChar255 and Path is 100; the primary key is on both so:
255 * 3 + 100 * 3 = 1065 which is more than 1000;

[Image: 1432572575.jpg]
Reply
Thanks given by:
#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
#34
RE: Installer 1.0.1 on CentOS7
(07-15-2015, 10:01 PM)turino Wrote: Hi,

You can try with this method until updated...
[...]
Finish... I hope you understand that i mean... hahaha...
I have success with that method... Good Luck...

Hello,

I pushed same thing to github repo of sentora. Sadly I gave up on this project.
I went back to ISPConfig which is imo more security wise.
Reply
Thanks given by:
#35
RE: Installer 1.0.1 on CentOS7
The issue is mainly with quota table that postfix don't need.

So we will remove this table and issue a patch for those who want to add the missing vacation tables that fail right post quota error.

https://github.com/sentora/sentora-installers/pull/72

M B
No support using PM (Auto adding to IGNORE list!), use the forum. 
How to ask
Freelance AWS Certified Architect & SysOps// DevOps

10$ free to start your VPS
Reply
Thanks given by:
#36
RE: Installer 1.0.1 on CentOS7
where is the patch boss?
Reply
Thanks given by:
#37
RE: Installer 1.0.1 on CentOS7
This one:

https://github.com/sentora/sentora-insta...r_1.0.3.sh

This had been already posted in announcement:

http://forums.sentora.org/showthread.php?tid=1853
No support using PM (Auto adding to IGNORE list!), use the forum. 
How to ask
Freelance AWS Certified Architect & SysOps// DevOps

10$ free to start your VPS
Reply
Thanks given by: Jango
#38
RE: Installer 1.0.1 on CentOS7
still getting error on roundcube: "Connection to storage server failed."
Reply
Thanks given by:
#39
RE: Installer 1.0.1 on CentOS7
after several hours of testing & trying postpix & domain all working now Smile
Reply
Thanks given by:
#40
RE: Installer 1.0.1 on CentOS7
Don't use CentOS 7 though, it's rather problematic.
Reply
Thanks given by:


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

Forum Jump:


Users browsing this thread: 1 Guest(s)