Author |
|
noncasus Valued Community Member
Joined: 06 April 2009
Online Status: Offline Posts: 34
|
Posted: 07 April 2009 at 7:10pm | IP Logged
|
|
|
Ok so I was told by Igor (from what i understood) that i will be able to offer a public email service, kinda like hotmail or gmail, only with the XMail server pro.
So i went ahead and downloaded the server trial and uploaded to my server.
Problem is when i try to install it i end up with this message:
./afterlogic-xmail-pro-install.run: ./xmail-installer.sh: /bin/sh: bad interpreter: Permission denied
Ive been trying to install it as root user with permissions set to 777 and still no luck.
Im kinda new to linux btw, so any help would be awesome!
Thanks!
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 08 April 2009 at 2:09am | IP Logged
|
|
|
You need to make sure the filesystem you're running the installation from has "exec" flag set. If it has "noexec" flag set, you cannot run any scripts or executables from that partition. You can check the flags info for your partitions by entering mount without any parameters. Calling interpreter explicitly should help in any case (see below).
Additionally, installation script unpacks package content into /tmp directory. In case if it's protected in any way, you may run the installation script pointing it to any other directory of your choice, e.g.:
Code:
sh ./afterlogic-xmail-pro-install.run --target /root/tmpdir |
|
|
To provide you with more help on this, we need to know the name and version of Linux distribution used on your server.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
noncasus Valued Community Member
Joined: 06 April 2009
Online Status: Offline Posts: 34
|
Posted: 08 April 2009 at 9:26am | IP Logged
|
|
|
ok i ran mount as u advised and this is what i got:
/dev/sda5 on / type ext3 (rw,usrquota)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
/dev/sda2 on /tmp type ext3 (rw,noexec,nosuid)
/dev/sda1 on /boot type ext3 (rw)
tmpfs on /dev/shm type tmpfs (rw)
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
/tmp on /var/tmp type none (rw,noexec,nosuid,bind)
As i said before, im not linux expert but from what i can see, i cant execute any scripts on my server because every directory and/or partition has only the read and write commands.
Any help on this?
|
Back to Top |
|
|
noncasus Valued Community Member
Joined: 06 April 2009
Online Status: Offline Posts: 34
|
Posted: 08 April 2009 at 9:36am | IP Logged
|
|
|
nevermind i got it to run with the command line u suggested, thanks!
But now, what url do i use to see the webmail pro, etc?
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 08 April 2009 at 1:19pm | IP Logged
|
|
|
By default, they are placed to:
http://localhost/webmail-pro
and
http://localhost/adminpanel
for AfterLogic WebMail Pro and Admin Panel respectively. Of course, an assigned domain name can be used in this case as well.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|