Sybase&networker restore master error

I'm try restore master database from networker backup software. but always can't success.
The ASE version is 15.7. The Networker version is 8.2.
I remember original master device size approx 40MB~70MB, master database size 20M~40M. I don't kown actualy size of original master database and master device, but I've  recently master's backup set.
1.I recreate master device "master.dat".
dataserver -s SERVER2_SAP -d /opt/sybase/data/master.dat -b 100M -w master -f
2.Copy RUN_SERVER2_SAP to new name m_RUN_SERVER2_SAP, and changed m_RUN_SERVER2_SAP file, add -m option.
3.start server in single user mode.
startserver -f /opt/sysbase/ASE-15_0/install/m_RUN_SERVER2_SAP
4. extention master database size.
alter database master on master='50M'
No matter how much master device, the size of the master database is always cannot be changed.
The error message always same:CREATE or ALTER DATABASE failed because the device 'master' has no space available either for log or for data.
5. Ignore the error and continue the restore opeartion
update sysservers set srvnetname="SERVER1_BS" where srvname="SYB_BACKUP"
startserver -f /opt/sybase/ASE-15_0/install/RUN_SERVER1_BS
6. excute restore command
nsrsybrc -Usa -s win-client SYBASE:/SERVER2_SAP/master
This command like as load master from "xxxxxx" .
[sybase@server2 data]$ nsrsybrc -Usa -s win-client SYBASE:/SERVER2_SAP/master
24146:nsrsybrc: Error from server : Msg 2401, Level 11, State 2
        Character set conversion is not available between client character set 'utf8' and server character set 'ascii_8'.
Recovering database "master" to "master".
Open Server Error: 16323.10.0: Could not load localization information for character set ascii_8 language us_english
24146:nsrsybrc: Error from server SERVER2_BS: Msg 407603, Level 3, State 3
        Backup Server Internal Error: 4.76.3.3: Device /opt/sybase/data/master.dat: 51204 is not a legal virtual block number.
24146:nsrsybrc: Error from server : Msg 8006, Level 20, State 1
        ASE error detected by Backup Server. Refer to the preceding Backup Server message.
75753:nsrsybrc: The recovery failed.
In the SERVER2_BS.log file, the error message as above.
How to restore the master database on different server ?
Who can help me? Thanks!

Hi,
Please find the below guide for master DB restore.
Section 1. Background
Starting with Adaptive Server version 12.5, there is no buildmaster program to build the master device. Rather, this functionality has been incorporated into the dataserver (unix) andsqlsrvr (Windows) programs. The server now allows you to create master devices and databases with 2K, 4K, 8K or 16K logical page sizes. Due to these and other changes, you cannot use the instructions provided in the ASE Troubleshooting and Error Messages Guide (EMTSG) for disaster recovery tasks like recovering the master database or device.
This TechNote explains how to perform disaster recovery in the 12.5.x server. It is applicable to ASE 12.5.0.1 IR and higher versions.
Note:
The EMTSG instructions still apply to the pre-12.5 servers.
Section 2. Before You Begin
This document describes three key maintenance and disaster recovery tasks:
Loading an older copy of your master database. This assumes that both the master device and master database are intact and free from corruption.
Recovering from a corrupted master database. This assumes that the master device is intact.
Recreating a master device and all its databases.
Some points to note before using this information:
This material applies only to ASE 12.5.x and higher. It has been verified with ASE 12.5.0.1 Interim Release (IR), and it is recommended that you use the procedures with this release (or later). For 12.0 and prior versions, use the instructions provided in the ASE Troubleshooting and Error Messages Guide, "System Database Recovery."
This material assumes that your Adaptive Server was installed with your platform's default sort order. If you have installed a non-default sort order, you must ensure that your (restored) server uses the correct sort order and character set to reflect that in the dump. Refer to the ASE Troubleshooting and Error Messages Guide, "System Database Recovery," section titled "Valid Dump with Non-Default Sort Order" for details; and note that in Step 3 of that section, the sybinit utility has been replaced by the dsedit/dscputilities.
All SQL command examples in this document use Transact-SQL syntax. All command-line examples are unix commands; Windows users can find the equivalent NT syntax in ASE Utility Programs for Windows and Windows NT.
Starting with 12.5, the dataserver command allows a space between option and parameter.
The examples in this document assume that
             - the dataserver binary is located in $SYBASE/bin/dataserver
             - the master device is $SYBASE/d_master.dat         Replace this location and device name with those appropriate for your site.
The server must be in single-user mode (that is, started with the -m flag) to load the master database. In this mode only the master database can be loaded.
You can only load a dump of master that matches your server level. Loading an older version dump to a newer server is not permitted.
You can use these procedures regardless of which version of the server you were using when you created your old master device. The server will find and correct any placement differences between the old and recreated databases.
After the load completes but before shutting down, the server does some post-processing to reconcile the newly loaded sysdatabases and sysusages tables against the information in the master device. At this time the server may print a variety of error messages regarding failures to use or find the master database, and/or attempts to insert duplicate keys or duplicate rows to sysusages. Ignore these messages; they occur only during the reconciliation phase, and will not affect the server's operation after it shuts down and is restarted.
Section 3. Loading an older copy of master database
Use the following steps if your master database and the master device are intact, and you simply wish to load an older dump of your master database.Note:
Be sure to read Section 2, Before You Begin.Step 1: Put the Server in Single-user ModeShut down and restart the server with the -m flag, which places the server in single-user mode and sets up to load the master database:startserver -fRUN_servername -mStep 2: Establish the Backup Server NameThis step is necessary to ensure that Adaptive Server has access to its backup server for dumps and loads. Follow the instructions detailed in Section 6, Manually Setting the Backup Server Name.Step 3. Load the master DatabaseIssue the following isql command:1> load database master from "master_db_dump"
2> goAdaptive Server shuts itself down after the load is complete.
Section 4. Recreating the master Database
Use this procedure when the current master device is usable, but you are unable to use the server because of master database corruption. These steps enable you to create a newmaster database and reload it from backup.Step 1. Create a New master DatabaseThe approach to creating the new master database depends on the extent and nature of the corruption. Three different scenarios are possible:
Basic recreation, which is sufficient if only the data in master was affected. The server reads the master device to determine page and device sizes.
Recreating when the device's configuration area is corrupted. You will need to provide page and device sizing information.
Recreating when the master database allocation pages are also corrupted. All corrupt or unallocated extents on the device are allocated to master.
Basic Recreation of master DatabaseThis command instructs the server to read the device's configuration area to obtain page size and device size and determine where to place the master database: % $SYBASE/bin/dataserver -d $SYBASE/d_master.dat -w masterThe server creates a master of the same size, and in the same locations on disk, as the database it is replacing. It will NOT have the old database's data!  Instead, it contains a default set of data that you will replace later via load database. The default data includes information about any databases existing on the master device (but no other devices).  It also has minimal system information, including a login for sa with a null password.This process produces a large number of "upgrade" messages tracking the progress of database creation which are helpful in troubleshooting any problems. They are "upgrade" messages because the server creates a new master database by "upgrading" the device.Note:
If the configuration area is corrupt or unavailable, this command returns the message: "The configuration area in device 'xxx' appears to be corrupt. The server needs this data to boot, and so cannot continue." If this occurs, continue with the instructions below.Recreation with a corrupt configuration areaThe "Basic Recreation" process above may fail if the device's configuration area has become corrupt.  If so, you must supply sizing information. You will need two parameters: the page size (you need to know what this was), and the device size, which you can determine directly from the device:% ls -l $SYBASE/d_master.datDivide the size shown by the page size (2048, say) to obtain the number of server pages, by 1024 to obtain KB, or by 1048576 to obtain MB.Provide this information on the command line as follows:% $SYBASE/bin/dataserver -d $SYBASE/d_master.dat -w master
        -z page_size  -b device_sizeFor example, if your page size is 2K and the device size is 51204 server pages (100 MB, plus 8K space for the configuration area), the command looks like this:% $SYBASE/bin/dataserver -d $SYBASE/d_master.dat -w master -z 2k -b 51204You may also specify the device size as Kb, Mb, or Gb; for example, "-b 100M".Recreation when master database allocation pages are corruptedIf the above procedures for recreating the master database fail, the database's allocation pages are corrupt. (This may happen, for instance, if the database device was inadvertently written over by a completely different file.)In this case, you can force the server to allocate all corrupted or unallocated extents to the master database:% $SYBASE/bin/dataserver -d $SYBASE/d_master.dat -w master -fThis allocates ALL corrupted or otherwise unrecognizable extents to the master database.  Depending on the extent of your master device corruption, and how much free space it originally had, this will probably leave master much larger than it needs to be, causing it to occupy space that used to belong to other databases like model, tempdb, and sybsystemdb. We will consider recovering from that situation later.Note:
You may combine the -f, -b, and -z options as necessary.Step 2. Restart the Server in Single-user ModeThe server shuts down after recreating the master database. Restart it with the -m flag, which places the server in single-user mode and sets up to load the master database: startserver -fRUN_servername -mStep 3: Account for Missing Databases (if you used the -f option)Note:
You only need this step if you used the -f option in Step 1 to recreate the master database due to allocation page corruption. If you did not use -f, proceed to Step 4.Recall that the -f command line option could make the new master larger than needed at the expense of other required databases on the master device. You will need to check for these databases before proceeding. This step has many possible permutations, so you must know what databases should be on the master device to perform this step. For example, if you had moved tempdb to a different device, you will not need tempdb on the master device.  If upgrading, you may well have created sybsystemdb on a device other than master; if so, you will not need to account for sybsystemdb.Log in as sa, and check the databases currently on the master device:1> select name from sysdatabases
2> goDo you see all the databases that should be on the master device?  If so, skip the rest of this step. Otherwise, you will need to determine which databases are missing and how big they should be, then obtain the free space needed to recreate these databases.The following isql script obtains the required space by removing it from the end of the master database. In order, it
    establishes how many logical pages the missing databases need
    subtracts that number from the pages that master occupies
    removes disk usage entries for parts of master above that limit
    restricts the highest logical chunk of master such that its total size leaves the required number of pages free.
You will need to provide the required space value, denoted as "@needed_mb".
Note:
This sample script is provided to assist you with the disaster recovery task. It is not officially supported by Sybase.
       1> declare @needed_mb int, @needed_pages int, @master_end int,
        2>      @pgspermb int
        3> select @pgspermb = (1048576 / @@maxpagesize)
        4> select @needed_mb = 12 -- replace '12' with required space value
        5> select @needed_pages = @needed_mb * @pgspermb
        6> select @master_end = sum(size) - @needed_pages
        7> from master.dbo.sysusages
        8> where dbid = 1
        9> if (@master_end > (6 * @pgspermb))
        10> begin
        11>     delete master.dbo.sysusages
        12>     where lstart > @master_end
        13>     update master.dbo.sysusages
        14>     set size = @master_end - lstart
        15>     where dbid = 1
        16>     and lstart = (select max(lstart) from master.dbo.sysusages
        17>                  where dbid = 1)
        18> end
        19> else
        20> begin
        21>     print "Can't take enough space from the master database!"
        22>     print "Need to find %1! pages", @needed_pages
        23>     print "That would leave master with %1! pages", @master_end
        24>     print "Cannot continue."
        25> end
        26> go
Note:
If the procedure fails, your master device is not big enough to hold all the databases you are trying to create.  Check the required MBs of space that you specified. If it is correct, it may be necessary to create a new master device using the instructions in Section 5, Recreating the Master Device.
You now have enough space to recreate your required databases. Create them one at a time. For example:
1> create database model on default = 3
2> go
Repeat for each database. Then shut down the server, and restart it in single-user mode using step 2 above.
Step 4. Establish the Backup Server Name
This step is necessary to ensure that Adaptive Server has access to its backup server for dumps and loads. Follow the instructions detailed in Section 6, Manually Setting the Backup Server Name.
Step 5. Load the master Database
Issue the following isql command:
1> load database master from "master_db_dump"
2> go
Unlike during a normal database load, the server may need to perform a lot of extra work, because master contains information about the identity and location of your other databases; that information may have changed for this master device, and the server must check and update it as necessary.
At the end of this step, the server contains correct disk usage information about the master device. This may differ from the information in sysusages in the dump, so the server will find and correct both the size and location information for the databases.  Any entries for parts of databases that don't actually exist on master will be removed.
During post-processing from the load, you may see one or more errors from the server. Read Section 1, Before You Begin, for more information about these errors.
After checks and validations are complete, the server will shut down. You may now restart it normally.
Step 6. Did you recreate any databases in step 3 above?
If you recreated databases using the procedure in step 3 above, load those databases.  You must restart the server without the -m flag in order to accomplish this.
Section 5. Recreating the Master Device
Use these steps when the disk that used to contain your master device is not accessible, and you need to start over with a new device.
This situation is somewhat similar to the scenario in Section 4 above in which the master device becomes so corrupt that you need to use the -f option, because you will need to know what databases used to be on your master device and how big they were so you can validate and recreate them as necessary.
Step 1. Create your new master device
When creating the new master device, make sure you use the same page size as your old master device and make the new device at least as large as the old one. The following example creates a device with a 2048-byte logical page size, and total size 100 Megabytes + 8 Kilobytes (the 8 KB is extra space for the configuration area.)
% $SYBASE/bin/dataserver -d $SYBASE/d_master.dat -z 2k -b 51204
Use the -s option with this command to specify the server name. You can also specify the "-b" size in Kb, Mb, or Gb. In the above example you would use "-b 100.00782M". Without one of the K, M, or G modifiers, the default device size is expressed in server virtual pages, 2048 bytes each.
At device creation, the server issues large numbers of "upgrade" messages tracking its progress; these messages help troubleshoot any problems. They are upgrade messages because the server creates a new installation by doing an "upgrade" of a device that it has just created.
When finished, the server shuts down. You now have a master database containing minimal system information, including an sa login whose password is null, and minimally sizedmaster, model, tempdb, and sybsystemdb databases.
Step 2. Put the Server in Single-user Mode
Shut down and restart the server with the -m flag, which places the server in single-user mode and sets up to load the master database:
startserver -fRUN_servername -m
Step 3. Establish the Backup Server Name
This step is necessary to ensure that Adaptive Server has access to its backup server for dumps and loads. The new master database contains a default Backup Server entry ofSYB_BACKUP for srvnetname, which is probably wrong. Since the  sp_addserver procedure is not available at this time, log in to the server as sa and update sysservers directly:
1> update master.dbo.sysservers
2> set srvnetname = "backup_server_name"
3> where srvname = "SYB_BACKUP"
4> go
(1 row affected)
Step 4. Load the master Database
Issue the following isql command:
1> load database master from "master_db_dump"
2> go
The server inspects the master device and makes any corrections needed in the newly loaded sysdatabases and sysusages. These corrections affect only the master device, since that is the only device that changed -- the server assumes that all your other devices are undamaged and need not be inspected.
After this step, it is possible that your new master device contains database entries for databases that also exist on other devices in your system.  This may happen if you movedtempdb to a different device, or created sybsystemdb on a different device.  The server recognizes and handles this situation: if it finds pre-existing entries for those databases on other devices, it presumes that the existing entries are correct and does not change them.
During post-processing from the load, you may see one or more errors from the server.  Please read Section 2, Before You Begin, for more information about these errors.
After the checks and validations are complete the server shuts down. You may now restart it normally.
Step 5. Check that the Databases on Master Device Are Correct
When you created a new master device in step 1 above, the server created only its default set of databases, with minimal data. You will almost certainly need to load dumps of the databases (notably model) that used to be there.
Are the databases on your new master device large enough to hold the dumps you will be loading into them?  Are all the necessary databases present? Is there any obsolete data that you need to clean up?
Log in as sa and inspect the databases on your system:
1> declare @pgspermb int
2> select @pgspermb = 1048576 / @@maxpagesize
3> select "db name"=db_name(dbid), dbid, "size"=sum(size) / @pgspermb
4> from master.dbo.sysusages
5> group by dbid
6> go
This command shows you all the databases present on your system, and their total size. Note that the size column in the output is expressed in Megabytes.
Does this list contain any entries where database name is null? These sysusages entries don't have any matching entries in sysdatabases; they are unnecessary and should be deleted.  (You may be specially susceptible to this if you upgraded from pre-12.0 versions, and created sybsystemdb on the older version; sybsystemdb will have a different dbid than the defaultdbid.)  To remove these entries, use a script like the following:
1> exec sp_configure "allow updates", 1
2> go
1> delete sysusages
2> where db_name(dbid) is null
3> go
1> exec sp_configure "allow updates", 0
2> go
Are any databases missing?  Create those databases. Are the databases large enough?  If not, alter them to be at least large enough to hold the dumps. (It is okay if they are too large; the server simply clears the excess space.)
Section 6. Manually Setting the Backup Server Name
This procedure updates the sysservers table and is needed to ensure that Adaptive Server can access the correct backup server to carry out dumps and loads. Use it with the instructions for Sections 3 and 4.
Execute the following isql commands in Adaptive Server:
1> use master
2> go
1> select srvname, srvnetname from sysservers
2> where srvname = "SYB_BACKUP"
3> go
There are three possible outcomes to this query. Take the appropriate action below depending on the outcome:
Outcome
Action
ASE returns a single row and 
srvnetname contains the correct 
Backup Server name
No action is needed.
ASE returns a single row
but the srvnetname is not the
correct Backup Server name
Issue the following isql command:1> update sysservers
2> set srvnetname = "backup_server_name"
3> where srvname = "SYB_BACKUP"
4> go
where backup_server_name is the name of the Backup Server 
as it appears in the interfaces file.
ASE returns 0 rows
Issue the following isql command:1> sp_addserver SYB_BACKUP, null,
2> backup_server_name
3> go
  Regards
Kiran Kumar A
SAP

Similar Messages

  • TS3694 Hi my iphone 5 is bricked in recovery mode while updating from ios 7 to 7.0.4 and every time when i try to restore Unknoown error 12 pops up.iphone was not jailbroken. please help

    Hi my iphone 5 is bricked in recovery mode while updating from ios 7 to 7.0.4 and every time when i try to restore 'Unknoown error 12' pops up each time.iphone was not jailbroken. please help

    From the article that your statement was posted from:
    Check for hardware issues
    Try to restore your iOS device two more times while connected with a cable, computer, and network you know are good. Also, confirm your security software and settings are allowing communication between your device and update servers. If you still see the alert when you update or restore, contact Apple support.
    Common errors: 1, 10-47, 1002, 1011, 1012, 1014, 1000-1020.

  • Database: login password on the network. [ASE Error SQL1640]

    Hi Experts,
    I was in configuration of dbacockpit.I did the following activity,
    Used DBCO transaction code to maintain DB connection.
    1.run DBCO t-code
    2.set change mode
    3.select '+++SYBADM' connection name
    3.Click 'Details' icon
    After log on with 'sybSID', run rsecssfx command.
    $ rsecssfx list
    $ rsecssfx put DB_CONNECT/DEFAULT_DB_PASSWORD <password>
    Then I restarted the server and my server ewent down. Servers didpatcher got stopped . disp+work stopped.
    The following are the log files of dev_disp and dev_w0 .
    ue May 27 15:14:43 2014
    M  calling db_connect ...
    B  Loading DB library 'C:\usr\sap\EGS\DVEBMGS00\exe\dbsybslib.dll' ...
    B  Library 'C:\usr\sap\EGS\DVEBMGS00\exe\dbsybslib.dll' loaded
    B  Version of 'C:\usr\sap\EGS\DVEBMGS00\exe\dbsybslib.dll' is "720.00", patchlevel (0.113)
    C  trace file set
    C  Callback functions for dynamic profile parameter registered
    B  read_con_info_ssfs(): DBSL supports extended connect protocol
    B    ==> connect info for default DB will be read from ssfs
    C  database is local: connect_timeout: 3
    C  Thread ID:3692
    C  lib_dbsl 720_REL 11/16/2011 10:53:00
    C  Using dynamic link library 'C:\usr\sap\EGS\DVEBMGS00\exe\dbsybslib.dll'
    C  dbsybslib.dll patch info
    C    SAP patchlevel  0
    C    SAP patchno  114
    C    Last SYBASE DBSL patchlevel 0
    C    Last SYBASE DBSL patchno         113
    C    Last SYBASE DBSL patchcomment SYB: Database connect information for Sybase ASE (1643080)
    C  lpc:(local) connection used on SAPSOLMAN
    C  ERROR: -1 in function SQLConnectWithRetry (SQLConnectWithRetry) [line 3075]
    C  (1640) [ZZZZZ] [Sybase][ODBC Driver][Adaptive Server Enterprise]Adaptive Server requires encryp
    C  tion of the login password on the network.

    C  ERROR: -1 in function SQLConnectWithRetry (SQLConnectWithRetry) [line 3075]
    C  (4002) [ZZZZZ] [Sybase][ODBC Driver][Adaptive Server Enterprise]Login failed.


    C Tue May 27 15:14:44 2014
    C  ERROR: -1 in function SQLConnectWithRetry (SQLConnectWithRetry) [line 3075]
    C  (1640) [ZZZZZ] [Sybase][ODBC Driver][Adaptive Server Enterprise]Adaptive Server requires encryp
    C  tion of the login password on the network.

    C  ERROR: -1 in function SQLConnectWithRetry (SQLConnectWithRetry) [line 3075]
    C  (4002) [ZZZZZ] [Sybase][ODBC Driver][Adaptive Server Enterprise]Login failed.

    C  Connection 0 failed using DRIVER={Adaptive Server Enterprise};server=SAPSOLMAN;port=4901;uid=SAPSR3;db=EGS;pwd=xxxxxxxxxx;TextSize=2147483647;FetchArraySize=1000;ReleaseLocksOnCursorClose=1;DynamicPrepare=1;UseCursor=1;homogeneousbatch=1;charset=ServerDefault;EncryptPassword=2;EnableLOBLocator=0;app=R3D00 comm rd ODBC;logintimeout=3;supresstdscontroltokens=0;supressrowformat2=0;SuppressRowFormat=0;SuppressParamFormat=0;

    B  ***LOG BY2=> sql error 1640   performing CON [dbsh         1246]
    B  ***LOG BY0=> [ASE Error SQL1640]Adaptive Server requires encryption of the login password on the network.
    [ASE Error SQL1640]Adaptive Server requires encryption of the login password on the network.
    [dbsh         1246]
    B  ***LOG BY2=> sql error 1640   performing CON [dblink       540]
    B  ***LOG BY0=> [ASE Error SQL1640]Adaptive Server requires encryption of the login password on the network.
    [ASE Error SQL1640]Adaptive Server requires encryption of the login password on the network.
    [dblink       540]
    M  ***LOG R19=> ThInit, db_connect ( DB-Connect 000256) [thxxhead.c   1490]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThInit: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   11319]
    Can you please troubleshoot my problem and peovide me with a proper solution.
    Thanks,
    Satheesh E

    Now i am able to login to isql,
    C:\sybase\EGS\OCS-15_0\bin>isql -Usapsa -PeGsolman123 -SEGS -X
    1> sp_configure 'net password encryption reqd'
    2> go
    Parameter Name                 Default     Memory Used
             Config Value
             Run Value
             Unit                 Type
    net password encryption reqd             0           0
                        1
                        1
             switch               dynamic
    (1 row affected)
    (return status = 0)
    1>

  • HT1937 Your IMEI network results have returned! Your completed request is shown below:  Network Code Status: Error: SEVER ERROR or Invalid IMEI

    Your IMEI network results have returned! Your completed request is shown below:
    Network Code Status:
    Error: SEVER ERROR or Invalid IMEI
    <Personal Information Edited by Host>

    Hello there tamaddon,
    It sound slike we need to troubleshoot no service to your phone here. We have a great article about troubleshooting what might be causing this, named iPhone: Troubleshooting No Service found here http://support.apple.com/kb/ts4429. The symptoms in the article are a bit different to what you are experiencing but the troubleshooting is valid.
    Try turning iPhone off and then on again.
    Remove the SIM card and verify that it is a valid, carrier-manufactured SIM. Also verify that it is not damaged, worn, or modified. Then reinsert it.
    Check for a carrier settings update. Tap Settings > General > About while connected to a Wi-Fi network. If an update is available, a prompt should appear soon. If Wi-Fi is not available, connect your device to iTunes.
    Update your iPhone to the latest version of iOS.
    Restore the iPhone.
    If you're still experiencing No Service issues, contact your carrier to check for any network or account issues that could cause this issue.
    Take care,
    Sterling

  • I tried to restore and error 28 appeared,what do I do?

    I tried to restore and error 28 appeared.  What do I do next?

    That's what I found about error 28 in this article http://support.apple.com/kb/TS3694
    Error 23, 28, 29: These errors may indicate a hardware issue with your device. Follow the steps in this article. Also attempt to restore while connected with the white USB Dock Connector cable that shipped with your device, on a known good computer and network to isolate this issue to the device. The MAC address being missing or the IMEI being the default value, (00 499901 064000 0), can also confirm a hardware issue. Out-of-date or incorrectly configured security software can also cause these errors.

  • Network file permission error

    I've finally tracked down the source of the problem for third-party template installers that get the network file permission error. I'm not sure if Peter (Laimavia) has been here discussing this, but he uses the same installer and Jumsoft (iLifeStuff) would be using the same method as well so neither of them would be exempt from this issue.
    It looks like JTemplate is resetting the admin file permissions for TemplatesInfo.plist to read only. Why it does this is questionable - it's absolutely not necessary. It allows JTemplate full control of the file, but it blocks any other third-party installer from updating the file. <scratching head>
    If you're using JTemplate and you purchase templates for iWeb, you will likely encounter an error that states Network File Permission Error when trying to install them. I'm not a UNIX guru so I could not find a way to set the permissions back to read/write. When I tried this, my access dropdown was entirely disabled at the admin level - even when I unlocked the settings. Even the back-up copy of TemplatesInfo.plist that JTemplate makes for you is reset to read-only permissions so even if you thought you're reverting to your original installation, you're not.
    On my development machine where JTemplate was not installed, the default iWeb installation allows admin access to that file with read/write permissions so it would seem the only way to undo this problem is to reinstall iWeb.
    Testing confirmed all of these results, including the reinstall. Template installers worked just fine once the files were restored so if you're getting that error, that's what you need to do.

    Okay I'm talking with Peter now... he was already aware of the issue and also confirmed that JTemplate was the source of this problem. He provided this solution for resetting your file permissions. I'm not sure if you have to do this every time JTemplate is used. I'll test it later and report back.
    If you are familiar with the "Terminal" application, then this should do the trick:
    Open up Terminal. ( Applications/Utilities/Terminal )
    Copy and paste this:
    sudo -s
    cd /Applications/iWeb.app/Contents/Resources/English.lproj/Templates
    chmod g+w TemplatesInfo.plist
    Now, hit enter. Close terminal.
    Try and run the installers again

  • Web-Disk on OSX 10.9 Give me this error: "Finder got an error: Network file permission error."

    Previously I was using OSX 10.8 and Web Disk was working great.
    Since I upgraded to OSX 10.9 Web Disk Dont Attach to my compputer and give me this ERROR:
    FInder got an error: Network file permission error.
    When I got this ERROR first time I searched GOOGLE and found this link: http://cammodude.blogspot.no/
    And I did:
    To force all connections to be SMB1:
    Open A terminal window
    paste in the following line followed by the return key(should be all on one line): 
    echo "[default]" >> ~/Library/Preferences/nsmb.conf; echo "smb_neg=smb1_only" >> ~/Library/Preferences/nsmb.conf
    What the command does:
    Creates a file called nsmb.conf  in your  home directory at the path ~/Library/Preferences/nsmb.conf.
    Adds directives to force SMB connections to use the SMB1 protocol.  This is slower but stable.
    Then I could use Web Disk on OSX 10.9 after executing this command in Terminal.
    But now I restarted my Macbook and now Im NOT able to connect to Web Disk and get the same ERROR.
    FInder got an error: Network file permission error
    After trying 100 times it attaches 1 time but then show this ERROR:
    Can't get <<class cdis>> "my.server.com/2078" of application "Finder".
    If this happen then I can see the files in Finder and see the Contents and Size of files but if I open a PHP file in BBEdit then it shows BLANK.. But actually it is NOT blank.
    Now Im stuck How can I solve this? All help is highly appericated..
    Thank you so much...

    Hi,
    Make sure to chmod the app, something like this :
    chmod -Rf 777  secure_site_WebDisk.app
    (in my case the CPanel provided the app for my OSx version.)

  • Exchange 2010 "This message could not be sent. Try sending the message again later, or contact your network administrator. Error is [0x80004005-00000000-00000000].

    Exchange 2010 "This message could not be sent. Try sending the message again later, or contact your network administrator.  Error is [0x80004005-00000000-00000000].
    In a mixed client environment, mostly Outlook 2010 & 2013 clients. Only Outlook 2013 clients (about only 4 mailboxes) are receiving this error immediately after sending an email. My temp band-aid at the
    moment is to: from the client, go into the "address book" & select a different address book like "Contacts" & then select the address again & select the Global Address List, which is the default. (it will have the users email
    + at the beginning of the field, it reads, Global Address List - (email of the user), then I close Outlook & open it back up, & the problem is solved. But on some mailboxes, not all, the issue comes back. From my research, I know that our individual
    mailboxes do not send out over 500 emails in one day. Most users will send out maybe 20 or 30 in one day, so I don't think it's that. 
    But I'm not sure if this is related, but I have noticed that the log files for the Exchange 2010 seems to only hold logs with date stamps of only a couple of days. It used to hold log files indefinitely until they were archived, deleted, etc. So, this is
    a new, unusual issue I have seen as well. 
    We have 2 .edb's, one active: 78 GB's and one disabled at 7 GB's. Exchange 2010 is running on Windows Server 2008 r2, Enterprise Ed. We have had Exchange 2010 running now for about almost 2 years now and this is the first time this particular issue has come
    up.
    Thanks.

    Hi,
    You can refer to the following steps to rebuild an Offline Address Book.
    1. Open EMS. Update OAB using the Update-OfflineAddressbook "offline address book" cmdlet. Restart Background Intelligent Transfer Service on the Mailbox server.
    2. Initiate OAB replication from mail box server to CAS server. Execute for each CAS server using the Update-FileDistributionService "CASServerName" cmdlet.
    3. Start Outlook and download OAB.
    What's more, here is an article for your reference.
    How to Quickly Rebuild an Exchange 2010 Offline Address Book
    http://social.technet.microsoft.com/wiki/contents/articles/7725.how-to-quickly-rebuild-an-exchange-2010-offline-address-book.aspx
    Hope this can be helpful to you.
    Best regards,
    Amy Wang
    TechNet Community Support

  • "Network host busy" error

    Hi, everyone. I have trawled this discussion list and followed all the advice available to no avail. Any help would certainly be appreciated.
    The background is as follows:
    MacBook Pro, 2.33GHz Intel Core 2 duo, 2GB RAM, currently running OSX 10.6.2. Software up to date. Previously on OSX 10.4.11 until 4 weeks ago. Printing to a networked HP 4100 with a fixed IP address in the office worked fine until last week, when a "Network host busy error, trying again in 30 seconds" error arose. Printing from the other workstations (iMacs on 10.6.2) on the network continues to proceed normally. Steps I have taken include deleting the HP4100 print queue and re-installing (several times) as IP>HPJetDirect socket to 192.168.1.100. Clearly the printer is online (it says so) and is identified as the correct printer driver is selected automatically (HP LaserJet 4100 series v 3010.107) and all the configurable options are correctly selected (trays 2,3 & 4, envelope feeder and duplex option) and toner supply levels are correctly read. Still get network host busy error. Rebooted the printer. No avail. Rebooted the router. No avail. Reinstalled HP printer drivers from here: http://support.apple.com/downloads/#printer%20drivers%20mac%20os%20x%20v10.6. No avail. Have also reset the printing system (losing all the other print queues in the process!) to no avail. Checked the printer setup on the iMacs that can print, and it is identical to that which I am attempting to install. Have I missed something? Anyone with any clues, please?

    Hi there,
    If you have your HP printer queue configured exactly the same as other Mac's that are working fine, and with all the steps you have taken thus far, then I can only suggest that you either have a network issue or something blocking the path.
    So first thing is to check that you are set to the same subnet as the other Mac's. This can be confirmed via the Network Utility under the Info pane. You may have to change the drop menu from Ethernet (en0) to Airport (en1) depending on what you use. Typically the first three sets of numbers of your IP address is your subnet, while the last number is your network address. So, based on the printers address of 192.168.1.100, your Mac should have a subnet of 192.168.1 and a network address other than 100.
    If the IP address for your Mac is set to the same subnet as the HP then while Network Utility is still open, select the Ping tab, enter the IP address of 192.168.1.100, set the number of Pings to 4 and press the Ping button. You should get a response from the printer.
    If you do get a response then it is safe to assume that the network setup on your Mac is okay. At this stage I would check that your Firewall is disabled (located in System Preferences > Security).
    If the firewall is not enabled then my last suggestion is to create another printer queue to the HP, this time selecting IP > LPD for the protocol. Since HP wrote Socket then it is odd that it would not be working, but a network host busy would indicate that the Mac cannot either communicate with the IP address or the Port of the selected IP address. By changing the protocol from HP Socket to LPD you are basically setting the Mac to connect on port 515 instead of 9100.
    Note that if the other Mac's show the print queue URL as "socket://192.168.1.100/" then they are using HP Jetdirect also so it would make no sense that your connection to the same port would fail. But it can't hurt trying an alternate protocol when you have tried everything else...
    HTH and reply if needed.
    Pahu

  • Ipad 2 ios 5.0.1 stuck at apple logo black screen, subsequently cannot restore, face error 16XX in itunes.

    i have encountered this problem even after 10 hours of troubleshooting various methods, when i turned off my ipad and when turning it back on, it would just hang during the white apple logo on the black screen and remain there with no sign of activity till i hold the lock + home button till it shuts down.
    after several attempts, i tried to put it into recovery and restore firmware, it would get stuck at stage "preparing ipad for restore" after i click on restore ipad.
    i have attempted:
    dfu and restore, 1600 error
    recovery and restore, 21 error
    my ipad 2 is wi-fi only model running ios 5.0.1.
    i can't think of anything else other than sending it to applecare. my ipad 2 was recently purchased in jan this year. any input would be greatly welcomed!

    Just follow these steps. I am sure it will solve your problem.
    http://support.apple.com/kb/HT1808?locale=en_GB&login=email

  • Windows 8.1 Network Share 0x8007003b Error Copying Files

    Hi All,
    I'm having an issue when copying files from a Windows network share. If the file is above 5MB it will start copying and then after a minute or two I will get an error such as:
    Interrupted Action
    An unexpected error is keeping you from copying the file. If you continue to receive this error, you can use the error code to search for help with this problem.
    Error 0x8007003B: An unexpected network error occurred.
    The network share is in a different office and is accessible over a point-to-point VPN, so the connection is not that fast. 
    But before everyone tells me to start diagnosing the router and or VPN please take note of the following:
    My colleague who is running Windows 7 can copy files from the network share fine
    If I run a Windows 7 VM on my Windows 8.1 laptop I can copy the files across fine
    I also know it isn't an issue with this particular file share. I set up a little lab, where I had one VM which had a shared folder and 2 other client VMs one running Windows 7 and one running Windows 8.1. I limited the bandwidth to the two client
    VMs to a similar speed we see across our VPN. The result was that the Windows 8.1 failed with the same error above, whereas the Windows 7 copied fine.
    There is also a noticeable difference visually when copying using Windows 8.1 and Windows 7:
    Windows 7 - The progress bar progresses smoothly giving the current speed and estimated time remaining
    Windows 8.1 - The progress bar progresses in a jumpy fashion. E.g. it shows no progress, then after a minute it jumps and shows 16% progress, then shows no further progress, then jumps by another 18%. There is no estimated time remaining.
    I ran Wireshark to investigate what was going on at the network layer. I see the following behaviour:
    Windows 8.1 - The file is copying fine then all of a sudden there are a lot of TCP dupack packets. After which the Windows 8.1 client sends a RST packet and then the error pops up.
    Windows 7 - The file is copying fine then you also see a load of TCP dupack packets, however no error is displayed and it continues copying fine.
    I'd appreciate any help with this I'm hoping there are some settings I can change to make Windows 8.1 behave more like Windows 7!
    FYI originally posed here (but was advised to ask on Technet) - https://answers.microsoft.com/en-us/windows/forum/windows8_1-files/windows-81-network-share-0x8007003b-error-copying/300bc9a4-597b-402a-b885-9dd6f6fb51a2
    Thanks,
    Zak

    Hi MeipoXu,
    Sorry, it has taken me so long to reply. I thought I had subscribed to receive updates on this thread, but I didn't see anything!
    I've ran the commands you gave but some of them did not work, I got the following error: 
    Set global command failed on IPv4 The parameter is incorrect.
    However, output of current settings are below.
    TCP Global Parameters
    Receive-Side Scaling State          : disabled
    Chimney Offload State               : disabled
    NetDMA State                        : disabled
    Direct Cache Access (DCA)           : disabled
    Receive Window Auto-Tuning Level    : normal
    Add-On Congestion Control Provider  : none
    ECN Capability                      : disabled
    RFC 1323 Timestamps                 : disabled
    Initial RTO                         : 3000
    Receive Segment Coalescing State    : disabled
    Non Sack Rtt Resiliency             : disabled
    Max SYN Retransmissions             : 2
    To answer your original questions.
    Do you mean the file below 5 MB will copy fine ?
    5MB is not a hard limit. If the file is small enough it will copy before it errors out. A file of around 5MB or so fails with an error.
    Have you tried to copy the files from another Windows 8.1 machine (This will help us to verify whether the issue is casued by the specific machine)?Have you tried to copy another file from the network share to have a check ?
    Yes I've tried from another Windows 8.1 machine and have the same behaviour. It is the same with different files from the network share. And the same with different network shares.
    I am seeing nothing in the event viewer when the error occurs. I do not believe this to be a VPN issue because I can recreate this situation perfectly. As I mentioned in the original post- I
    also know it isn't an issue with this particular file share. I set up a little lab, where I had one VM which had a shared folder and 2 other client VMs one running Windows 7 and one running Windows 8.1. I limited the bandwidth to the two client VMs to a similar
    speed we see across our VPN. The result was that the Windows 8.1 failed with the same error above, whereas the Windows 7 copied fine.
    Basically, I had virtual machines all on the same local network. One virtual machine was hosting a file share with files on it. I created one Windows 7 VM and one Windows 8.1 VM. Using VMWare Workstation you can limit the network bandwidth to the VMs. When
    I did not limit the network bandwidth I could copy all files of all sizes fine. However, when I limit the network bandwidth to a speed of around 30-50KBps, the Windows 8.1 VM fails to copy files with the same error. But Windows 7 VM copies the files fine.
    The point of limiting the bandwidth in this way is to create a similar scenario to that I see when connecting over the VPN.
    This all leads me to believe there is some sort of issue with copying files from fileshares over slow connections using Windows 8.1.
    Cheers,
    Zak

  • I tried to charge my iPod Touch 5th generation but it died while charging  and it was tuning and it said i had to connect to iTunes so i did and i had to restore it to use it and while restoring an error code (9) appered and i can't use it. Plz help

       So  I was using my iPod Touch 5th generation and the charger wouldnt charge it and it died then while it was in the process of tuening back on the apple logo dissapeered and it kept on turning on and off so i put it into DFU mode and it said to plug it into itunes to i did and it said i had to restore it to use it but when i tried to restore it it brought up ," Couldnt restore ipod, error code (9) " ..... and i have tried 3 different USB cables and two different computers and USB ports and i have no clue what to do so i would like help from anyone please that would be awesome!!!!
                        Thank you, 
                                           Zac

    Zac henderson wrote:
    ...Couldnt restore ipod, error code (9) " ...
    Try here  >  Configure security software

  • How I fixed the 'network host busy" error

    I've been down for a day solving the "network host busy' error.
    First, I had fits trying to hook up this HP to my system. Here's the thread on that:
    http://forums.techguy.org/networking/858081-laserjet-4500-mac-osx-10-a.html
    Once all that was done, it was working.
    The system was off and sometimes unplugged over the course of the evening.
    I could not get it to work again.
    It turned out that somehow during the course of events, the ip number of the printer had changed. I printed out the configuration page directly from the printer's configuration menu, and reset the ip address to match the new one.
    Protocol in this case was HP Jet Direct socket.
    Hope that helps someone out there. It looks like there are a lot of people tearing their hair out over this message and that there is no one solution.

    I just found a solution to this problem and thought I would post it here, too.
    I'm using a HP Photosmart C7280 with 10.6.1
    Ever since updating to Snow Leopard, I kept receiving the "Network host busy" message. Today, I thought I would try running the network wizard feature on the printer itself, and after the printer connected to my router and I entered the password, the problem fixed itself. No more error message.
    I'm not sure if this will work for everyone, but it did for me. Such an easy solution for such a headache-inducing problem.
    Message was edited by: TNTWhite

  • HP recovery could not restore computer error code 0xe0ef000e

    I bought a nice Solid State drive.  Unfortunately it is not possible to upgrade my system to new hard drive.  It fails every time with HP recovery could not restore computer error code 0xe0ef000e.  This is after removing everything...  graphics card, ram, cd drive...  nothing is plugged in except the keyboard, monitor and mouse.
    Windows 8 strikes again.  Does anyone have any suggestions about how to actually use the recovery disks to reinstall windows 8 onto a new solid state drive.  I hate this computer and wish I would have never bought it actually.  It's been nothing but crap from day one.

    It's the HP 500-023w desktop.  I ended up just buying a Winodws 8.1 OEM disk and installing that on the SSD.  The recovery tool is a bit useless.  Reading through various forum posts it seems I would have ended up spending hours trying to figure it out or else buying the recovery disks from HP.  Just paying $89 for an OEM disk is a good deal by comparison since at the very least the computer has no bloatware on it now.
    What a hugely unnecessary hassle really.  Now if only I could get this heap of junk to boot with a PCI-e graphics card installed I might actually be able to use it with two monitors.  Good grief.

  • Itunes wont install ,could not access network location %appdata% error?

    itunes wont install ,could not access network location %appdata% error?

    Let's try the following user tip with that one:
    "Could not access network location %APPDATA%" install errors

Maybe you are looking for

  • How to keep an image "in place" within a document using Pages?

    Here's what I want solved. When I position an image (like a jPeg photo) within a document I take a great amount of care as to how it looks in the layout. BUT, if I add a new line of text ABOVE the image, all the text moves, but the image stays in pla

  • Some apps do not function without WiFi

    Hello.....I ordered roaming for 30 days outside US for 2 mobile phones. But my whataspp in one of my phones do not function without WiFi. It's that ok. I would like to know if I can use it as we are in US, (Puerto Rico). Please contact me. Thanks....

  • Websites don't recognize Flash Player 10.1 on Droid X

    I have had my droid x for a few weeks now. I have been able to view flash based sites before. However, today I go to common sites like cnn.com. youtube etc and it says I don't have Flash Player installed?! Has anyone else run into this issue?

  • Formula confused by sorting

    I feel that I may have missed the right page in a manual with this problem. I have a table recently imported from XL (with no initial problems). The table has some 3,000 rows and 12 columns. It is a listing of geographic locations, map No. grid refer

  • Audio loses sync

    I'm working in Captivate 4.  Have audio in a .wav format that I lay into the project.  I have captions, etc that are synced with the audio.  When I publish the project to a .swf the audio tends to lose it's synchronization.  This seems to happen rand