Plesk Temp Website Address

Jul 12, 2007

I've setup a site on my server through Plesk. The domainname isn't active yet.

What's the temp address that plesk using to access the site?

View 7 Replies


ADVERTISEMENT

Plesk 11.x / Windows :: Delete Temp Files In Folder?

Jun 20, 2013

I had a Problem with my FTP-Backup space, so PLESK couldn't do the daily backups that I configured. The problem with the ftp backup is solved. The backups are running again but there are still many large temporary files in a plesk folder.

Can I just delete them, or is this a bad idea?

The folder:
C:Program Files (x86)ParallelsPleskPrivateTemp

Screenshot

View 3 Replies View Related

Apache :: How To Open Website Using Its Dedicated IP Address

Feb 12, 2015

I have a VPS and run few websites. I am not good in Apache and Linux. I just got a dedicated IP address for one of my domains. I like that the website opens just by typing the IP address in the address bar of the browser. How can I activate that?

View 5 Replies View Related

TEMP Folder Full

Jul 6, 2007

I have a Linux dedicated server non managed, my os is CentOS I know that my temp folder is full just don't know how to empty it.

root@zone1 [~]# df -k
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/sda5 149153628 41449148 100127828 30% /
/dev/sdb1 153794688 94284 145888000 1% /backup
/dev/sda1 505604 21588 457912 5% /boot
none 516596 0 516596 0% /dev/shm
/dev/sda3 2063536 1960624 0 100% /tmp
/tmp 2063536 1960624 0 100% /var/tmp
root@zone1 [~]#

Warning: Unknown(): write failed: No space left on device (28) in Unknown on line 0

Warning: Unknown(): Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/tmp) in Unknown on line 0

View 4 Replies View Related

Creating Temp Tables On Disk

May 7, 2007

In phpMyAdmin I see this:

Created_tmp_disk_tables 2,118 The number of temporary tables on disk created automatically by the server while executing statements. If Created_tmp_disk_tables is big, you may want to increase the tmp_table_size value to cause temporary tables to be memory-based instead of disk-based.
Created_tmp_files 0 How many temporary files mysqld has created.
Created_tmp_tables 5,637 The number of in-memory temporary tables created automatically by the server while executing statements.

I have tried upping tmp_table_size but it's no use. My my.cnf file:

Quote:

# Example MySQL config file for very large systems.
#
# This is for a large system with memory of 1G-2G where the system runs mainly
# MySQL.
#
# You can copy this file to
# /etc/my.cnf to set global options,
# mysql-data-dir/my.cnf to set server-specific options (in this
# installation this directory is /var/lib/mysql) or
# ~/.my.cnf to set user-specific options.
#
# In this file, you can use all long options that a program supports.
# If you want to know which options a program supports, run the program
# with the "--help" option.

# The following options will be passed to all MySQL clients
[client]
#password= your_password
port= 3306
socket= /var/lib/mysql/mysql.sock

# Here follows entries for some specific programs

# The MySQL server
[mysqld]
port= 3306
socket= /var/lib/mysql/mysql.sock
skip-locking
key_buffer = 384M
max_allowed_packet = 1M
table_cache = 384
sort_buffer_size = 2M
read_buffer_size = 2M
read_rnd_buffer_size = 8M
myisam_sort_buffer_size = 64M
thread_cache_size = 8
query_cache_size = 32M
# Try number of CPU's*2 for thread_concurrency
thread_concurrency = 8
tmp_table_size = 300M
max_tmp_tables=100

# Don't listen on a TCP/IP port at all. This can be a security enhancement,
# if all processes that need to connect to mysqld run on the same host.
# All interaction with mysqld must be made via Unix sockets or named pipes.
# Note that using this option without enabling named pipes on Windows
# (via the "enable-named-pipe" option) will render mysqld useless!
#
#skip-networking

# Replication Master Server (default)
# binary logging is required for replication
log-bin

# required unique id between 1 and 2^32 - 1
# defaults to 1 if master-host is not set
# but will not function as a master if omitted
server-id= 1

# Replication Slave (comment out master section to use this)
#
# To configure this host as a replication slave, you can choose between
# two methods :
#
# 1) Use the CHANGE MASTER TO command (fully described in our manual) -
# the syntax is:
#
# CHANGE MASTER TO MASTER_HOST=<host>, MASTER_PORT=<port>,
# MASTER_USER=<user>, MASTER_PASSWORD=<password> ;
#
# where you replace <host>, <user>, <password> by quoted strings and
# <port> by the master's port number (3306 by default).
#
# Example:
#
# CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,
# MASTER_USER='joe', MASTER_PASSWORD='secret';
#
# OR
#
# 2) Set the variables below. However, in case you choose this method, then
# start replication for the first time (even unsuccessfully, for example
# if you mistyped the password in master-password and the slave fails to
# connect), the slave will create a master.info file, and any later
# change in this file to the variables' values below will be ignored and
# overridden by the content of the master.info file, unless you shutdown
# the slave server, delete master.info and restart the slaver server.
# For that reason, you may want to leave the lines below untouched
# (commented) and instead use CHANGE MASTER TO (see above)
#
# required unique id between 2 and 2^32 - 1
# (and different from the master)
# defaults to 2 if master-host is set
# but will not function as a slave if omitted
#server-id = 2
#
# The replication master for this slave - required
#master-host = <hostname>
#
# The username the slave will use for authentication when connecting
# to the master - required
#master-user = <username>
#
# The password the slave will authenticate with when connecting to
# the master - required
#master-password = <password>
#
# The port the master is listening on.
# optional - defaults to 3306
#master-port = <port>
#
# binary logging - not required for slaves, but recommended
#log-bin

# Point the following paths to different dedicated disks
#tmpdir= /tmp/
#log-update = /path-to-dedicated-directory/hostname

# Uncomment the following if you are using BDB tables
#bdb_cache_size = 384M
#bdb_max_lock = 100000

# Uncomment the following if you are using InnoDB tables
#innodb_data_home_dir = /var/lib/mysql/
#innodb_data_file_path = ibdata1:2000M;ibdata2:10M:autoextend
#innodb_log_group_home_dir = /var/lib/mysql/
#innodb_log_arch_dir = /var/lib/mysql/
# You can set .._buffer_pool_size up to 50 - 80 %
# of RAM but beware of setting memory usage too high
#innodb_buffer_pool_size = 384M
#innodb_additional_mem_pool_size = 20M
# Set .._log_file_size to 25 % of buffer pool size
#innodb_log_file_size = 100M
#innodb_log_buffer_size = 8M
#innodb_flush_log_at_trx_commit = 1
#innodb_lock_wait_timeout = 50

[mysqldump]
quick
max_allowed_packet = 16M

[mysql]
no-auto-rehash
# Remove the next comment character if you are not familiar with SQL
#safe-updates

[isamchk]
key_buffer = 256M
sort_buffer_size = 256M
read_buffer = 2M
write_buffer = 2M

[myisamchk]
key_buffer = 256M
sort_buffer_size = 256M
read_buffer = 2M
write_buffer = 2M

[mysqlhotcopy]
interactive-timeout

This server has 1GB of RAM, not a dedicated sql server though. RAM usage is low too, 567MB of RAM is being used right now total... is there something I'm overlooking?

View 0 Replies View Related

Modernbill 5 Temp Directory + Open_Base

Dec 25, 2007

I'm trying to install Modernbill v.5 onto a Plesk Server. Now I don't know if this will effect it at all however, the system is a CentOS 5 box running HyperVZ (Virtual Servers) on OpenVZ. Then the VE Environment is running Plesk 8.2 with the newest updates on a CentOS 5 OS also.

Anyways, so I've fixed all the other errors however no matter what I do I continue to get these two errors,

Critical requirements not satisfied. Please prepare a suitable environment before continuing.
You MUST have a writable temporary folder [you do not].
You MUST have the php.ini setting "open_basedir" unset for access to system-level API libraries [you do not].

-----

I have tried all the different varieties of entering the path name to the tmp folder which is set to 777, however it continues to tell me that it can't find the temp directory. Also for the php issue for open_basedir I've commented it out and tried putting it to = none. Again neither of which work even after restarting apache.

View 13 Replies View Related

Upgrading Server. How To Migrate Email To Temp Server

Oct 24, 2007

I have a collocated server which I'd like to do some upgrades to. I'm having it shipped back to me so that I can do the upgrades myself. However, since I use this as my primary email server, I need help setting something up so I have no email downtime.

I have a cheap shared hosting account with DreamHost so one idea I have is to point the domain to their servers and handle things through there for a bit. This seems like the "brute force" way to do it though since I have to wait for DNS propagation and what not. Another idea was to use a service like DynDNS' MailHop BackupMX which does storage and forwarding. However, this service is kind of expensive ($30) considering I'm only going to use it a week or so.

View 1 Replies View Related

Plesk - How To Change Domain's IP Address

Sep 10, 2009

I am running plesk 9.2. I need to move one domain from the shared IP to dedicated IP. How do I do that? My server vendor has already allocated the IP addresses to me and I can see the unused IPs in the Ip address pool. How can I change the ip of suppose; mydomain.com from 1.2.3.4(shared) to 4.5.6.7(dedicated)?

View 2 Replies View Related

Plesk 12.x / Linux :: Ban Mail By IP Address?

Aug 13, 2014

Is it possible to ban mail from a specific IP address using Plesk 12?

View 1 Replies View Related

Plesk 12.x / Linux :: New Email Address With NO Mailbox

Jun 20, 2014

Since upgrading to 12.0.18 Update #5 i have picked up a strange problem when creating a new email account.

When I try setup and new email account on any domain, I get teh following error message.

Code:

Error: mailmng-outgoing failed: ERROR:outgoing:mails.domain_id may not be NULL

If i click OK, I get the following error message

The specified email address is already in use.

I have to click cancel to return to the email address list, which shows the new email address with NO mailbox.

I then have to open the email address and check the Mailbox option to activate it.

Now the email account is configured correctly.

View 5 Replies View Related

Plesk 11.x / Windows :: Can't Remove Old Inactive IP Address

May 7, 2014

My Parallels Plesk Panle 11.0.9 (Windows 2008 r2) would not allow me to remove an old IP address. I've tried using PP Reconfigurator but encountered a problem:

1. I open PP Reconfigurator and click "Change Server IP Addresses"
2. Under IP addresses I see 2 addresses
3. I check the one that is no longer active
4. I select "Existing Address", however NO existing addresses are displayed.

Is there a way to remove this old inactive address somehow. I should say that we have 2 domains on that server. Both domains are associated with the active IP address.

The funny thing is that when using PP Reconfigurator we see that the inactive IP is still associated with one of the two domains (this is not true). In short PP Reconfigurator displays DOMAIN 1 and DOMAIN 2 associated with the active IP; while DOMAIN 1 also associated with the inactive IP.

Problem is that we can't upgrade our panel because the upgrade application considers our server to be associated still with the old inactive IP address and can't find the necessary ports for that old IP.

View 2 Replies View Related

Plesk 12.x / Linux :: Allow Incoming Emails Only From One IP Address?

Apr 21, 2015

On my plesk server, i have several emails account. These email addresses should receive only emails send by a specific server. But for now, they can receive any email, including spam.

So, i would like to block all emails that are not coming from the allowed server.

How can i do this in plesk ? As i am not a very good server admin, can you tell me exactly what i need to do in plesk?

View 3 Replies View Related

Plesk Automation :: Postfix Address Extensions

Sep 8, 2014

Is it possible to enable postfix address extensions while still having "What to do with mail sent to nonexistent users" set to "Reject"? I am trying to get confirmation to work where we have:

Code : user@domain.com

as a valid mailbox. I want emails addressed to

Code : user+confirm+2945o2419485@domain.com

to be also delivered to user@domain.com. But its being blocked by the plesk delivery service. Is there a way to get around that? FYI - the numbers are dynamically generated, so setting up an alias for that specific address will not work.

View 4 Replies View Related

Plesk 12.x / Linux :: Email Address Uses - How To Change

May 29, 2015

I've looked a good amount of time trying to change/find where its stored. I've looked in var/qmail and there is no alias folder..We're running postfix/dovecot ....

View 4 Replies View Related

Plesk 12.x / Linux :: Completely Free Up One IP Address / Is It Possible

Oct 16, 2014

Is there any way to forbid plesk panel to use one of the IP addresses?If I remove address from panel - it has removed physically from network interface. I want to keep this IP address on network interface, but not let plesk panel use this address in all config files (nginx. apache, ssl etc.)

I want to use standard ports (443 and 80) on this IP address with some custom program not related to plesk panel and web servers. But now Plesk binds all available IP addresses to it services by default.

View 1 Replies View Related

Plesk Automation :: IP Address Pool Exclusions

Aug 26, 2014

How can we add a range of IPs say x.x.x.1 - x.x.x.250 and exclude certain IPs within this range?Say x.x.x.10, x.x.x.15, x.x.x.17, and so on, must be reserved and not used by PPA. If this is not possible, can this please be implemented?

View 3 Replies View Related

Plesk 12.x / Linux :: VPS Hosting - Using Different IP Address In Each Domain

Jun 18, 2015

I've a vps hosting with several domains as you can see

I have to install several SSL certificates and the provider indicates me I must use different IP address in each domain, but I don't know how to do that.

I have several IPs

But all the domains are associated with the first IP, and I can't disassociate one domain and associate it to other IP.

Only when I go to settings for the hosting, I can change the IP, but it's the IP of the hosting, not the IP for one domain.

View 1 Replies View Related

Apache :: How To Use Virtual Host IP Address In Request To Remote Address

Feb 6, 2015

My customer has an external facing Apache server that is acting as a reverse proxy to two internal applications. They have:

- external addresses for each app which resolve to different ip addresses, so app1.their_domain.com and app2.their_domain.com resolve to 77.3.170.10 and 77.3.170.11 respectively.
- the Apache server has two network interfaces with ip addresses 192.168.10.10 and 192.168.10.11
- the external ip addresses resolve to the above internal addresses
- the firewall between the Apache server and the internal app servers is configured to allow traffic from 192.168.10.10 to reach app_server1, and traffic from 192.168.10.11 to reach app_server2, both using port 7777.

I have configured a virtual host in httpd.conf for each ip, i.e.

Code:

<VirtualHost 192.168.10.10:80>
...
ProxyPass /app http://app_server1:7777/app
ProxyPassReverse /app http://app_server1:7777/app
RewriteRule ^/$ /app/app1 [R,L]
...
<VirtualHost>

and

Code:

<VirtualHost 192.168.10.11:80>
...
ProxyPass /app http://app_server2:7777/app
ProxyPassReverse /app http://app_server2:7777/app
RewriteRule ^/$ /app/app2 [R,L]
...
<VirtualHost>

This works fine in that the external address are being routed to the correct application, however the firewall is blocking requests to the second app as it appears the requests are coming from the Apache servers 'primary' ip address 192.168.10.10 instead of 192.168.10.11.

Is it possible to send requests using the ip address from the relevant VirtualHost?

Windows server 2008
Apache 2.2

View 1 Replies View Related

Plesk 11.x / Linux :: How To Block Mail From Specific Address

May 19, 2014

I'm trying to use spamfilter to block mail from specific address, adding this e-mail to spamfilter in mail account settings, but it doesn't work. In logs I see:

spamc[13430]: skipped message, greater than max message size (256000 bytes).

View 8 Replies View Related

Plesk 11.x / Linux :: Recipient Address Rejected Email

Jan 18, 2015

I have some email problem

CentOS 6.6 (Final)
Plesk version12.0.18 Update #29, last updated at Dec 22, 2014 03:39 AM

When sent mail to all @nblobe.com I got smtp 550 rejected

See log below:

Jan 18 10:55:12 server2 postfix/smtpd[3498]: NOQUEUE: reject: RCPT from localhost[::1]: 550 5.1.1 <jcree@nblobe.com>: Recipient address rejected: User unknown in virtual mailbox
table; from=<mail@server2.888.com> to=<jcree@nblobe.com> proto=ESMTP helo=<webmail.server2.888.com>

From webmail.nblobe.com I can send mail but they do not delivered, but I can receive mail...

View 2 Replies View Related

Plesk 11.x / Windows :: Create Email Address Hangs

Mar 17, 2014

I've got a problem with trying to add email accounts in Plesk.

My software is:
Windows 2008 R2 64Bit
Plesk 11.5.3
Mail Enable Standard / Free 7.53

I've added a subscription and the domain name.

When I click the Mail tab under the domain, I go to click "Create Email Address".

Plesk just sits there and doesn't load the next page.

I've tried looking for error logs, in Windows event viewer under Plesk it's blank.

The SMTP connector has only 1 outbound email in the queue.

I've tired running the Plesk fix permissions and verify database on Mail without resolving this issue.

View 3 Replies View Related

Plesk 12.x / Linux :: Change SSL Cert Assigned To IP Address

May 4, 2015

I changed the default certificate (I added the certificate and marked as Default in Server->SSL Certificates).Also I assigned the SSL certificate to my domain.

This works fine, but now I'm trying to make the website PCI Compliant and their test shows that if you request the certificate from the ip address (instead of using the domain) it showns the Parallels self signed certificate instead os showing the default certificate i uploaded). I used also ssltools.websecurity.symantec.com tool and it shows the same. How to change the certificate shown for the one I bought?

View 1 Replies View Related

Plesk 11.x / Linux :: Assigned New SSL Cert To IP Address - Still Showing Old

May 24, 2014

I had an SSL cert that is about to expire so I purchased a new one, installed it, uninstalled the soon to expire cert. Went into Tools and Settings > IP Addresses, and assigned the new certificate to the IP.

Although I deleted the old certificate, it still shows in a browser as well as when I test the domain at a SSL server testing website. The new certificate shows also in both browser and test website, but it is a secondary certificate after the soon-to-expire cert.

How do I get rid of the original certificate?

View 2 Replies View Related

Plesk 12.x / Linux :: Domain Alias With Mail Address

Aug 25, 2014

When creating a domain alias in Plesk, I can activate Web, Mail and DNS. When I activate "Mail" I would think that I now can create a mail address with that domain (myaddress @ domainalias.com). But I can't. If I create a new one I only can choose between the "real" domains. Is this a bug or a feature?

View 2 Replies View Related

Plesk 11.x / Windows :: Migration Error - IP Address Not Found

May 5, 2013

I'm trying to migrate a server that has the version 10 to another server with version 11.

When I run the migration manager, I get the message "IP Address not found '.

Both teams have the same type of IP, exclusive.

View 2 Replies View Related

Plesk 12.x / Linux :: Changing Administrator Email Address

Mar 26, 2015

The Plesk Health monitor is sending alerts to the wrong email by default. How can it be changed?hanged" notifications by "Health Monitor" are triggered by the default address that has been setup in My Profile > Profile & Preferences or is there a different way of changing this setting.

View 1 Replies View Related

Plesk 12.x / Linux :: How To Remove Or Change Primary IP Address

Sep 19, 2014

In Tools & Settings --> IP Adresses I got two IP Adresses:

192.168.1.10 (primary, bold)
89.104.83.139

Since the first IP adress is just the internal IP adress, I'd like to remove it, but I get the message that it's not allowed because it would be the primary IP.

Plesk has no option to just switch the primary IP adress, so what's the way to do it with plesk12?

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved